scala_maven.BasicArtifact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-maven-plugin Show documentation
Show all versions of scala-maven-plugin Show documentation
The scala-maven-plugin (previously maven-scala-plugin) is used for compiling/testing/running/documenting scala code of any maven project.
package scala_maven;
public class BasicArtifact {
public String groupId;
public String artifactId;
public String version;
public String classifier;
@Override
public String toString() {
return "BasicArtifact(" + groupId + "," + artifactId + "," + version + "," + classifier + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy