コード例 #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();
 }