예제 #1
0
파일: Pom.java 프로젝트: delkyd/spring-roo
 /**
  * Returns the ID of the organisation or group that owns this module or project
  *
  * @return a non-blank ID
  */
 public String getGroupId() {
   return gav.getGroupId();
 }
예제 #2
0
파일: Pom.java 프로젝트: delkyd/spring-roo
 /**
  * Returns the version number of this module or project
  *
  * @return a non-blank version number
  */
 public String getVersion() {
   return gav.getVersion();
 }
예제 #3
0
파일: Pom.java 프로젝트: delkyd/spring-roo
 /**
  * Returns the ID of the artifact created by this module or project
  *
  * @return a non-blank ID
  */
 public String getArtifactId() {
   return gav.getArtifactId();
 }