All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.dagere.kopeme.parsing.ProjectInfo Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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