using maven aether for plugin installation

This commit is contained in:
Sebastian Sdorra
2010-12-13 21:02:39 +01:00
parent 2df3034309
commit bf3448e088
10 changed files with 804 additions and 91 deletions

View File

@@ -35,8 +35,6 @@ package sonia.scm.plugin;
//~--- JDK imports ------------------------------------------------------------
import java.net.URL;
import java.util.Set;
import javax.xml.bind.annotation.XmlAccessType;

View File

@@ -89,6 +89,21 @@ public class PluginInformation
return groupId;
}
/**
* Method description
*
*
* @return
*/
public String getId()
{
StringBuilder id = new StringBuilder(groupId);
id.append(":").append(artifactId).append(":");
return id.append(version).toString();
}
/**
* Method description
*