de.dagere.kopeme.parsing.ProjectInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kopeme-core Show documentation
Show all versions of kopeme-core Show documentation
KoPeMe performance testing core
package de.dagere.kopeme.parsing;
public class ProjectInfo {
final String artifactId, groupId;
public ProjectInfo(final String artifactId, final String groupId) {
this.artifactId = artifactId;
this.groupId = groupId;
}
/**
* @return the artifactId
*/
public String getArtifactId() {
return artifactId;
}
/**
* @return the groupId
*/
public String getGroupId() {
return groupId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy