dev@glassfish.java.net

pom change review

From: Ludovic Champenois <Ludovic.Champenois_at_Sun.COM>
Date: Fri, 21 Aug 2009 10:56:19 -0700

Hi,
I need mimepull and jersey multipart jar libraries for our admin REST
module...

Top Level pom needs to add the version numbers:

Index: pom.xml
--- pom.xml Base (BASE)
+++ pom.xml Locally Modified (Based On LOCAL)
@@ -162,6 +162,8 @@
<wsdl4j.version>1.6.2</wsdl4j.version>
<gmbal.version>3.0.0-b009</gmbal.version>
<glassfish-management-api.version>3.0.0-b004</glassfish-management-api.version>
+ <mimepull.version>1.4</mimepull.version>
+ <jersey-multipart.version>1.1.2-ea-SNAPSHOT</jersey-multipart.version>
</properties>

(not sure if these versions will change soon or not?)


and the admin/rest module pom needs to add the dependencies:
Index: pom.xml
--- pom.xml Base (BASE)
+++ pom.xml Locally Modified (Based On LOCAL)
@@ -101,6 +101,19 @@
<groupId>org.glassfish.external</groupId>
<artifactId>management-api</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>org.jvnet</groupId>
+ <artifactId>mimepull</artifactId>
+ <version>${mimepull.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.jersey.contribs</groupId>
+ <artifactId>jersey-multipart</artifactId>
+ <version>${jersey-multipart.version}</version>
+ </dependency>
+
+
</dependencies>
<build>
<resources>