This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag maven-sling-plugin-2.0.2-incubator in repository https://gitbox.apache.org/repos/asf/sling-maven-sling-plugin.git
commit 74476131e5db1dd8fb374ad9c609de6504551968 Author: Felix Meschberger <[email protected]> AuthorDate: Fri Sep 21 06:10:25 2007 +0000 Remove default value from obr parameter git-svn-id: https://svn.apache.org/repos/asf/incubator/sling/trunk/maven-sling-plugin@577993 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/sling/maven/bundlesupport/BundleDeployMojo.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/sling/maven/bundlesupport/BundleDeployMojo.java b/src/main/java/org/apache/sling/maven/bundlesupport/BundleDeployMojo.java index b1bd6e4..e9c8b12 100644 --- a/src/main/java/org/apache/sling/maven/bundlesupport/BundleDeployMojo.java +++ b/src/main/java/org/apache/sling/maven/bundlesupport/BundleDeployMojo.java @@ -46,7 +46,10 @@ import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.project.MavenProject; /** - * Deploy a JAR representing an OSGi Bundle. + * Deploy a JAR representing an OSGi Bundle. This method posts the bundle built + * by maven to an OSGi Bundle Repository accepting the bundle. The plugin uses + * a </em>multipart/format-data</em> POST request to just post the file to + * the URL configured in the <code>obr</code> property. * * @goal deploy * @phase deploy @@ -71,9 +74,10 @@ public class BundleDeployMojo extends AbstractMojo { private String jarName; /** - * The URL of the OBR. - * - * @parameter expression="${obr}" default-value="http://obr.dev.day.com" + * The URL to the OSGi Bundle repository to which the bundle is posted, + * e.g. <code>http://obr.sample.com</code> + * + * @parameter expression="${obr}" * @required */ private String obr; -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
