core/bootstrap/src/main/java/org/jboss/modules/maven/ArtifactCoordinates.java [141:151]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        String artifactId1 = getArtifactId();
        String version1 = getVersion();
        StringBuilder builder = new StringBuilder(getGroupId().replace('.', separator));
        builder.append(separator).append(artifactId1).append(separator);
        String pathVersion;
        final Matcher versionMatcher = snapshotPattern.matcher(version1);
        if (versionMatcher.find()) {
            // it's really a snapshot
            pathVersion = version1.substring(0, versionMatcher.start()) + "-SNAPSHOT";
        } else {
            pathVersion = version1;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/bootstrap/src/main/java/org/jboss/modules/maven/ArtifactCoordinates.java [167:177]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        String artifactId1 = getArtifactId();
        String version1 = getVersion();
        StringBuilder builder = new StringBuilder(getGroupId().replace('.', separator));
        builder.append(separator).append(artifactId1).append(separator);
        String pathVersion;
        final Matcher versionMatcher = snapshotPattern.matcher(version1);
        if (versionMatcher.find()) {
            // it's really a snapshot
            pathVersion = version1.substring(0, versionMatcher.start()) + "-SNAPSHOT";
        } else {
            pathVersion = version1;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/bootstrap/src/main/java/org/jboss/modules/maven/ArtifactCoordinates.java [184:194]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        String artifactId1 = getArtifactId();
        String version1 = getVersion();
        StringBuilder builder = new StringBuilder(getGroupId().replace('.', separator));
        builder.append(separator).append(artifactId1).append(separator);
        String pathVersion;
        final Matcher versionMatcher = snapshotPattern.matcher(version1);
        if (versionMatcher.find()) {
            // it's really a snapshot
            pathVersion = version1.substring(0, versionMatcher.start()) + "-SNAPSHOT";
        } else {
            pathVersion = version1;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



