gshell-support/gshell-artifact-maven/src/main/java/org/apache/geronimo/gshell/artifact/maven/ArtifactResolverImpl.java [131:141]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        assert source != null;

        Artifact artifact = new Artifact();
        artifact.setGroup(source.getGroupId());
        artifact.setName(source.getArtifactId());
        artifact.setVersion(source.getVersion());
        artifact.setClassifier(source.getClassifier());
        artifact.setType(source.getType());
        artifact.setFile(source.getFile());

        return artifact;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



gshell-support/gshell-artifact-mercury/src/main/java/org/apache/geronimo/gshell/artifact/mercury/ArtifactResolverImpl.java [63:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        assert source != null;

        Artifact artifact = new Artifact();
        artifact.setGroup(source.getGroupId());
        artifact.setName(source.getArtifactId());
        artifact.setVersion(source.getVersion());
        artifact.setClassifier(source.getClassifier());
        artifact.setType(source.getType());
        artifact.setFile(source.getFile());

        return artifact;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



