}
protected org.apache.maven.artifact.Artifact geronimoToMavenArtifact(final org.apache.geronimo.kernel.repository.Artifact artifact) throws MojoExecutionException {
assert artifact != null;
ArtifactItem item = new ArtifactItem();
item.setGroupId(artifact.getGroupId());
item.setArtifactId(artifact.getArtifactId());
item.setVersion(artifact.getVersion().toString());
item.setType(artifact.getType());
return createArtifact(item);
}