public String getDependencyConflictId()

in maven-plugin-testing-harness/src/main/java/org/apache/maven/plugin/testing/stubs/ArtifactStub.java [168:177]


    public String getDependencyConflictId() {
        StringBuffer buffer = new StringBuffer();

        buffer.append(getGroupId());
        buffer.append(":").append(getArtifactId());
        buffer.append(":").append(getType());
        buffer.append(":").append(getClassifier());

        return buffer.toString();
    }