You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by al...@apache.org on 2017/02/04 22:19:33 UTC

[1/6] juddi git commit: JUDDI-968 progress with pom cleanup and dependency updates

Repository: juddi
Updated Branches:
  refs/heads/master 3f8dc0303 -> a6cb20900


JUDDI-968 progress with pom cleanup and dependency updates


Project: http://git-wip-us.apache.org/repos/asf/juddi/repo
Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/1e5ff4c7
Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/1e5ff4c7
Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/1e5ff4c7

Branch: refs/heads/master
Commit: 1e5ff4c7634530f8df8619849eeb6696bcdf5c47
Parents: 3f8dc03
Author: Alex O'Ree <al...@apache.org>
Authored: Fri Feb 3 06:59:33 2017 -0500
Committer: Alex O'Ree <al...@apache.org>
Committed: Fri Feb 3 06:59:33 2017 -0500

----------------------------------------------------------------------
 juddi-client/pom.xml                        |  2 -
 juddi-core-openjpa/pom.xml                  |  6 +-
 juddi-core/pom.xml                          |  7 +-
 juddi-ddl-generator/pom.xml                 |  8 +--
 juddi-examples/hello-world-embedded/pom.xml |  1 -
 juddi-gui/pom.xml                           |  1 -
 juddi-rest-cxf/pom.xml                      | 13 +---
 juddi-tomcat/pom.xml                        |  7 +-
 juddiv3-war-repl/pom.xml                    |  5 +-
 juddiv3-war/pom.xml                         |  5 +-
 pom.xml                                     | 82 +++++++++++++++++++++---
 11 files changed, 82 insertions(+), 55 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddi-client/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client/pom.xml b/juddi-client/pom.xml
index bb4111f..db1e833 100644
--- a/juddi-client/pom.xml
+++ b/juddi-client/pom.xml
@@ -45,7 +45,6 @@
 		<dependency>
 			<groupId>commons-collections</groupId>
 			<artifactId>commons-collections</artifactId>
-			<version>3.2</version>
 		</dependency>
 		<dependency>
 			<groupId>javax.servlet</groupId>
@@ -61,7 +60,6 @@
 		<dependency>
 			<groupId>org.apache.httpcomponents</groupId>
 			<artifactId>httpclient</artifactId>
-			<version>4.2.5</version>
 		</dependency>
 		<dependency>
 		    <groupId>org.easymock</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddi-core-openjpa/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core-openjpa/pom.xml b/juddi-core-openjpa/pom.xml
index 3d78a29..5b017cd 100644
--- a/juddi-core-openjpa/pom.xml
+++ b/juddi-core-openjpa/pom.xml
@@ -131,7 +131,6 @@
         <dependency>
             <groupId>commons-collections</groupId>
             <artifactId>commons-collections</artifactId>
-            <version>3.2</version>
         </dependency>
         <dependency>
             <groupId>org.apache.juddi</groupId>
@@ -188,13 +187,11 @@
         <dependency>
             <groupId>org.apache.derby</groupId>
             <artifactId>derby</artifactId>
-            <version>10.5.3.0_1</version>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>postgresql</groupId>
+            <groupId>org.postgresql</groupId>
             <artifactId>postgresql</artifactId>
-            <version>8.2-504.jdbc3</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -206,7 +203,6 @@
         <dependency>
             <groupId>org.apache.geronimo.javamail</groupId>
             <artifactId>geronimo-javamail_1.4_mail</artifactId>
-            <version>1.8.3</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddi-core/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core/pom.xml b/juddi-core/pom.xml
index e881681..48cd70a 100644
--- a/juddi-core/pom.xml
+++ b/juddi-core/pom.xml
@@ -148,25 +148,21 @@ language governing permissions and * limitations under the License. * */ -->
         <dependency>
             <groupId>org.apache.geronimo.javamail</groupId>
             <artifactId>geronimo-javamail_1.4_mail</artifactId>
-            <version>1.8.3</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.derby</groupId>
             <artifactId>derby</artifactId>
-            <version>10.5.3.0_1</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>mysql</groupId>
             <artifactId>mysql-connector-java</artifactId>
-            <version>5.1.6</version>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>postgresql</groupId>
+            <groupId>org.postgresql</groupId>
             <artifactId>postgresql</artifactId>
-            <version>8.2-504.jdbc3</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -184,7 +180,6 @@ language governing permissions and * limitations under the License. * */ -->
         <dependency>
             <groupId>commons-collections</groupId>
             <artifactId>commons-collections</artifactId>
-            <version>3.2</version>
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddi-ddl-generator/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-ddl-generator/pom.xml b/juddi-ddl-generator/pom.xml
index 26422b9..07d09b2 100644
--- a/juddi-ddl-generator/pom.xml
+++ b/juddi-ddl-generator/pom.xml
@@ -45,22 +45,16 @@
 		<dependency>
 			<groupId>org.apache.derby</groupId>
 			<artifactId>derby</artifactId>
-			<version>10.10.1.1</version>
 		</dependency>
 
 		<dependency>
 			<groupId>mysql</groupId>
 			<artifactId>mysql-connector-java</artifactId>
-			<version>5.1.29</version>
 		</dependency>
 
-
-
-
 		<dependency>
-			<groupId>postgresql</groupId>
+			<groupId>org.postgresql</groupId>
 			<artifactId>postgresql</artifactId>
-			<version>9.1-901.jdbc4</version>
 		</dependency>
 
 	</dependencies>	

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddi-examples/hello-world-embedded/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world-embedded/pom.xml b/juddi-examples/hello-world-embedded/pom.xml
index e93cb0f..020e7df 100644
--- a/juddi-examples/hello-world-embedded/pom.xml
+++ b/juddi-examples/hello-world-embedded/pom.xml
@@ -46,7 +46,6 @@
 		<dependency>
 			<groupId>org.apache.derby</groupId>
 			<artifactId>derby</artifactId>
-			<version>10.5.3.0_1</version>
 		</dependency>
 	</dependencies>
 	<build>

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddi-gui/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui/pom.xml b/juddi-gui/pom.xml
index 6b6123b..defc904 100644
--- a/juddi-gui/pom.xml
+++ b/juddi-gui/pom.xml
@@ -60,7 +60,6 @@ language governing permissions and * limitations under the License. * */ -->
         <dependency>
             <groupId>commons-collections</groupId>
             <artifactId>commons-collections</artifactId>
-            <version>3.2</version>
         </dependency>
         <dependency>
             <groupId>org.apache.cxf</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddi-rest-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-rest-cxf/pom.xml b/juddi-rest-cxf/pom.xml
index 2381974..b93afc8 100644
--- a/juddi-rest-cxf/pom.xml
+++ b/juddi-rest-cxf/pom.xml
@@ -62,13 +62,11 @@
 		<dependency>
 			<groupId>commons-collections</groupId>
 			<artifactId>commons-collections</artifactId>
-			<version>3.2</version>
 		</dependency>
-
 		<dependency>
 			<groupId>org.apache.cxf</groupId>
 			<artifactId>cxf-bundle-jaxrs</artifactId>
-			<version>2.7.5</version>
+			<version>${cxf.version}</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
@@ -151,7 +149,6 @@
 		<dependency>
 			<groupId>org.apache.geronimo.javamail</groupId>
 			<artifactId>geronimo-javamail_1.4_mail</artifactId>
-			<version>1.8.3</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
@@ -163,20 +160,16 @@
 		<dependency>
 			<groupId>org.apache.derby</groupId>
 			<artifactId>derby</artifactId>
-			<version>10.5.3.0_1</version>
 			<scope>test</scope>
-			
 		</dependency>
 		<dependency>
 			<groupId>mysql</groupId>
 			<artifactId>mysql-connector-java</artifactId>
-			<version>5.1.6</version>
 			<scope>test</scope>
 		</dependency>
 		<dependency>
-			<groupId>postgresql</groupId>
+			<groupId>org.postgresql</groupId>
 			<artifactId>postgresql</artifactId>
-			<version>8.2-504.jdbc3</version>
 			<scope>test</scope>
 		</dependency>
 		<dependency>
@@ -199,7 +192,7 @@
 		<dependency>
 			<groupId>org.apache.cxf</groupId>
 			<artifactId>cxf-rt-rs-extension-providers</artifactId>
-			<version>2.7.5</version>
+			<version>${cxf.version}</version>
 		</dependency>
 
 		<dependency>

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddi-tomcat/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-tomcat/pom.xml b/juddi-tomcat/pom.xml
index 1c699dc..d2c4ce4 100644
--- a/juddi-tomcat/pom.xml
+++ b/juddi-tomcat/pom.xml
@@ -68,12 +68,10 @@
 		<dependency>
 			<groupId>org.apache.derby</groupId>
 			<artifactId>derby</artifactId>
-			<version>10.4.2.0</version>
 		</dependency>
 		<dependency>
 			<groupId>mysql</groupId>
 			<artifactId>mysql-connector-java</artifactId>
-			<version>5.1.6</version>
 		</dependency>
 		<dependency>
           <groupId>org.apache.geronimo.specs</groupId>
@@ -82,9 +80,8 @@
           <type>jar</type>
         </dependency>
 		<dependency>
-            <groupId>postgresql</groupId>
+            <groupId>org.postgresql</groupId>
             <artifactId>postgresql</artifactId>
-            <version>8.2-504.jdbc3</version>
         </dependency>
 		<dependency>
 			<groupId>log4j</groupId>
@@ -145,7 +142,7 @@
 								
 								<property name="dependency.log4j.jar" value="${maven.dependency.log4j.log4j.jar.path}" />
 								<property name="dependency.mysql.jar" value="${maven.dependency.mysql.mysql-connector-java.jar.path}" />
-								<property name="dependency.postgres.jar" value="${maven.dependency.postgresql.postgresql.jar.path}" />
+								<property name="dependency.postgres.jar" value="${maven.dependency.org.postgresql.postgresql.jar.path}" />
 								<property name="dependency.commons-discovery.jar" value="${maven.dependency.commons-discovery.commons-discovery.jar.path}" />
 								<property name="dependency.derby.jar" value="${maven.dependency.org.apache.derby.derby.jar.path}" />
 								<property name="dependency.tomcat.zip" value="${maven.dependency.org.apache.tomcat.tomcat.zip.path}" />

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddiv3-war-repl/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war-repl/pom.xml b/juddiv3-war-repl/pom.xml
index 5d59292..2fbc0ef 100644
--- a/juddiv3-war-repl/pom.xml
+++ b/juddiv3-war-repl/pom.xml
@@ -244,7 +244,6 @@
 				<dependency>
 					<groupId>org.apache.geronimo.javamail</groupId>
 					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-					<version>1.8.3</version>
 				</dependency>
 			</dependencies>
 		</profile>
@@ -299,7 +298,7 @@
 				<dependency>
 					<groupId>org.apache.cxf</groupId>
 					<artifactId>cxf-rt-rs-extension-providers</artifactId>
-					<version>2.7.5</version>
+					<version>${cxf.version}</version>
 				</dependency>
 				
 				<dependency>
@@ -337,7 +336,6 @@
 				<dependency>
 					<groupId>org.apache.geronimo.javamail</groupId>
 					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-					<version>1.8.3</version>
 				</dependency>
 			</dependencies>
 		</profile>
@@ -431,7 +429,6 @@
 				<dependency>
 					<groupId>org.apache.geronimo.javamail</groupId>
 					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-					<version>1.8.3</version>
 				</dependency>
 			</dependencies>
 		</profile>

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/juddiv3-war/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war/pom.xml b/juddiv3-war/pom.xml
index 7ccce9a..aae2264 100644
--- a/juddiv3-war/pom.xml
+++ b/juddiv3-war/pom.xml
@@ -244,7 +244,6 @@
 				<dependency>
 					<groupId>org.apache.geronimo.javamail</groupId>
 					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-					<version>1.8.3</version>
 				</dependency>
 			</dependencies>
 		</profile>
@@ -299,7 +298,7 @@
 				<dependency>
 					<groupId>org.apache.cxf</groupId>
 					<artifactId>cxf-rt-rs-extension-providers</artifactId>
-					<version>2.7.5</version>
+					<version>${cxf.version}</version>
 				</dependency>
 				
 				<dependency>
@@ -337,7 +336,6 @@
 				<dependency>
 					<groupId>org.apache.geronimo.javamail</groupId>
 					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-					<version>1.8.3</version>
 				</dependency>
 			</dependencies>
 		</profile>
@@ -431,7 +429,6 @@
 				<dependency>
 					<groupId>org.apache.geronimo.javamail</groupId>
 					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-					<version>1.8.3</version>
 				</dependency>
 			</dependencies>
 		</profile>

http://git-wip-us.apache.org/repos/asf/juddi/blob/1e5ff4c7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9f8ae27..4cf3636 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,8 +43,8 @@ under the License.
         <sourceReleaseAssemblyDescriptor>source-release</sourceReleaseAssemblyDescriptor>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-        <cxf.version>2.7.14</cxf.version>
-        <springframework.version>3.2.2.RELEASE</springframework.version>
+        <cxf.version>2.7.18</cxf.version>
+        <springframework.version>3.2.18.RELEASE</springframework.version>
     </properties>
 
     <issueManagement>
@@ -272,6 +272,18 @@ under the License.
                     </filesets>
                 </configuration>
             </plugin>
+            <!--<plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <version>1.4.5</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>-->
         </plugins>
     </build>
     <reporting>
@@ -300,6 +312,18 @@ under the License.
                 <artifactId>apache-rat-plugin</artifactId>
 		<version>0.11</version>
             </plugin>
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <version>1.4.5</version>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>aggregate</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
         </plugins>
     </reporting>
     <modules>
@@ -326,26 +350,64 @@ under the License.
         </site>
     </distributionManagement>
     <dependencies>
+        <!-- these dependencies apply to all subject projects -->
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.11</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging-api</artifactId>
-            <version>1.1</version>
         </dependency>
     </dependencies>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>4.12</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging-api</artifactId>
+                <version>1.1</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-collections</groupId>
+                <artifactId>commons-collections</artifactId>
+                <version>3.2.2</version>
+            </dependency>
+            <dependency>
+                <groupId>mysql</groupId>
+                <artifactId>mysql-connector-java</artifactId>
+                <version>6.0.5</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.derby</groupId>
+                <artifactId>derby</artifactId>
+                <version>10.5.3.0_1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.postgresql</groupId>
+                <artifactId>postgresql</artifactId>
+                <version>9.4.1212</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.javamail</groupId>
+                <artifactId>geronimo-javamail_1.4_mail</artifactId>
+                <version>1.8.4</version>
+            </dependency>
+            <dependency>
+                    <groupId>org.apache.httpcomponents</groupId>
+                    <artifactId>httpclient</artifactId>
+                    <version>4.5.2</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+    
     <repositories>
         <repository>
-            <id>maven2-repository.dev.java.net</id>
-            <name>Java.net Maven 2 Repository</name>
-            <url>http://download.java.net/maven/2</url>
-            <layout>default</layout>
-        </repository>
-        <repository>
             <id>apache.nexus</id>
             <name>Apache NEXUS Maven 2 Repository</name>
             <url>https://repository.apache.org/content/repositories/releases/</url>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org


[5/6] juddi git commit: [maven-release-plugin] prepare for next development iteration

Posted by al...@apache.org.
[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/juddi/repo
Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/706fd1ec
Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/706fd1ec
Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/706fd1ec

Branch: refs/heads/master
Commit: 706fd1ecd12ad1e67ead7d91909f22921eb5ee48
Parents: 34690f7
Author: Alex O'Ree <al...@apache.org>
Authored: Sat Feb 4 15:45:38 2017 -0500
Committer: Alex O'Ree <al...@apache.org>
Committed: Sat Feb 4 15:45:38 2017 -0500

----------------------------------------------------------------------
 juddi-client-cli/pom.xml                              |  4 ++--
 juddi-client-plugins/pom.xml                          |  4 ++--
 juddi-client/pom.xml                                  |  2 +-
 juddi-core-openjpa/pom.xml                            |  2 +-
 juddi-core/pom.xml                                    |  2 +-
 juddi-examples/ValueSetValidator/pom.xml              | 10 +++++-----
 juddi-examples/create-partition/pom.xml               |  2 +-
 juddi-examples/hello-world-embedded/pom.xml           |  2 +-
 juddi-examples/hello-world/pom.xml                    |  2 +-
 juddi-examples/more-uddi-samples/pom.xml              |  4 ++--
 juddi-examples/pom.xml                                |  2 +-
 juddi-examples/service-version/pom.xml                |  6 +++---
 juddi-examples/simple-browse/pom.xml                  |  2 +-
 juddi-examples/simple-publish-clerk/pom.xml           |  2 +-
 juddi-examples/simple-publish-portable/pom.xml        |  2 +-
 juddi-examples/subscription-notification-amqp/pom.xml |  4 ++--
 juddi-examples/uddi-annotations/pom.xml               |  2 +-
 juddi-examples/uddiv2-api-bridge-example/pom.xml      |  4 ++--
 juddi-examples/wsdl2uddi-lifecyle/pom.xml             |  2 +-
 juddi-examples/wsdl2uddi/pom.xml                      |  2 +-
 juddi-gui-dsig/pom.xml                                |  2 +-
 juddi-gui/pom.xml                                     |  2 +-
 juddi-rest-cxf/pom.xml                                |  2 +-
 juddi-tomcat/pom.xml                                  |  2 +-
 juddiv3-war-repl/pom.xml                              |  2 +-
 juddiv3-war/pom.xml                                   |  2 +-
 pom.xml                                               |  4 ++--
 uddi-migration-tool/pom.xml                           |  2 +-
 uddi-tck-base/pom.xml                                 |  2 +-
 uddi-ws/pom.xml                                       |  2 +-
 30 files changed, 42 insertions(+), 42 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-client-cli/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client-cli/pom.xml b/juddi-client-cli/pom.xml
index 6d8ac70..9340343 100644
--- a/juddi-client-cli/pom.xml
+++ b/juddi-client-cli/pom.xml
@@ -20,11 +20,11 @@
      <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4</version>
+        <version>3.3.5-SNAPSHOT</version>
     </parent> 
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-client-cli</artifactId>
-    <version>3.3.4</version>
+    <version>3.3.5-SNAPSHOT</version>
     <packaging>bundle</packaging>
 
     <name>jUDDI CLI Client</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-client-plugins/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client-plugins/pom.xml b/juddi-client-plugins/pom.xml
index 955ad16..71f01fd 100644
--- a/juddi-client-plugins/pom.xml
+++ b/juddi-client-plugins/pom.xml
@@ -20,11 +20,11 @@
   <parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-parent</artifactId>
-    <version>3.3.4</version>
+    <version>3.3.5-SNAPSHOT</version>
   </parent>
   <groupId>org.apache.juddi.client.plugins</groupId>
   <artifactId>juddi-client-plugins</artifactId>
-  <version>3.3.4</version>
+  <version>3.3.5-SNAPSHOT</version>
   <name>juddi-client-plugins</name>
   <url>http://maven.apache.org</url>
   <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-client/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client/pom.xml b/juddi-client/pom.xml
index 9f4087d..c625f80 100644
--- a/juddi-client/pom.xml
+++ b/juddi-client/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent> 
 	<artifactId>juddi-client</artifactId>
 	<packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-core-openjpa/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core-openjpa/pom.xml b/juddi-core-openjpa/pom.xml
index 861de88..3b4f6d3 100644
--- a/juddi-core-openjpa/pom.xml
+++ b/juddi-core-openjpa/pom.xml
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4</version>
+        <version>3.3.5-SNAPSHOT</version>
     </parent>
     <artifactId>juddi-core-openjpa</artifactId>
     <packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-core/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core/pom.xml b/juddi-core/pom.xml
index 29b5e34..ab5cce3 100644
--- a/juddi-core/pom.xml
+++ b/juddi-core/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4</version>
+        <version>3.3.5-SNAPSHOT</version>
     </parent>
     <artifactId>juddi-core</artifactId>
     <packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/ValueSetValidator/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/ValueSetValidator/pom.xml b/juddi-examples/ValueSetValidator/pom.xml
index 587f413..3169785 100644
--- a/juddi-examples/ValueSetValidator/pom.xml
+++ b/juddi-examples/ValueSetValidator/pom.xml
@@ -12,30 +12,30 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent>
 
 	<artifactId>example-vsv-validator</artifactId>
-	<version>3.3.4</version>
+	<version>3.3.5-SNAPSHOT</version>
 	<name>jUDDI Example Value Set Validator</name>
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>uddi-ws</artifactId>
-			<version>3.3.4</version>
+			<version>3.3.5-SNAPSHOT</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-client</artifactId>
-			<version>3.3.4</version>
+			<version>3.3.5-SNAPSHOT</version>
 			<scope>provided</scope>
 		</dependency>
 	
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-core</artifactId>
-			<version>3.3.4</version>
+			<version>3.3.5-SNAPSHOT</version>
 			<scope>provided</scope>
 		</dependency>
 	</dependencies>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/create-partition/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/create-partition/pom.xml b/juddi-examples/create-partition/pom.xml
index 34e0606..469767e 100644
--- a/juddi-examples/create-partition/pom.xml
+++ b/juddi-examples/create-partition/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>create-partition</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/hello-world-embedded/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world-embedded/pom.xml b/juddi-examples/hello-world-embedded/pom.xml
index f85c344..abfd7b0 100644
--- a/juddi-examples/hello-world-embedded/pom.xml
+++ b/juddi-examples/hello-world-embedded/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>hello-world-embedded</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/hello-world/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world/pom.xml b/juddi-examples/hello-world/pom.xml
index 8b292d6..ac74492 100644
--- a/juddi-examples/hello-world/pom.xml
+++ b/juddi-examples/hello-world/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>hello-world</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/more-uddi-samples/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/more-uddi-samples/pom.xml b/juddi-examples/more-uddi-samples/pom.xml
index 1052ff1..e9181d9 100644
--- a/juddi-examples/more-uddi-samples/pom.xml
+++ b/juddi-examples/more-uddi-samples/pom.xml
@@ -20,11 +20,11 @@
     <parent>
         <groupId>org.apache.juddi.example</groupId>
         <artifactId>juddi-examples</artifactId>
-        <version>3.3.4</version>
+        <version>3.3.5-SNAPSHOT</version>
     </parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-more-samples</artifactId>
-    <version>3.3.4</version>
+    <version>3.3.5-SNAPSHOT</version>
     <name>jUDDI Even More Examples and Samples</name>
     <url>http://maven.apache.org</url>
     <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/pom.xml b/juddi-examples/pom.xml
index de4d118..98c43b6 100644
--- a/juddi-examples/pom.xml
+++ b/juddi-examples/pom.xml
@@ -15,7 +15,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<groupId>org.apache.juddi.example</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/service-version/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/service-version/pom.xml b/juddi-examples/service-version/pom.xml
index fb5513e..3c1fbc8 100644
--- a/juddi-examples/service-version/pom.xml
+++ b/juddi-examples/service-version/pom.xml
@@ -20,11 +20,11 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent>
 	<groupId>org.apache.juddi</groupId>
 	<artifactId>service-version</artifactId>
-	<version>3.3.4</version>
+	<version>3.3.4-SNAPSHOP</version>
 	<name>jUDDI Example Service Versioning</name>
 	<url>http://maven.apache.org</url>
 	<properties>
@@ -39,7 +39,7 @@
 		<dependency>
 			<groupId>${project.groupId}</groupId>
 			<artifactId>juddi-client</artifactId>
-			<version>${project.parent.version}</version>
+			<version>3.3.5-SNAPSHOT</version>
 		</dependency>
 	</dependencies>
 	<build>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/simple-browse/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-browse/pom.xml b/juddi-examples/simple-browse/pom.xml
index f41449c..cd6ee1c 100644
--- a/juddi-examples/simple-browse/pom.xml
+++ b/juddi-examples/simple-browse/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-browse</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/simple-publish-clerk/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-publish-clerk/pom.xml b/juddi-examples/simple-publish-clerk/pom.xml
index 9bc5d89..5c52bc2 100644
--- a/juddi-examples/simple-publish-clerk/pom.xml
+++ b/juddi-examples/simple-publish-clerk/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-publish-clerk</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/simple-publish-portable/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-publish-portable/pom.xml b/juddi-examples/simple-publish-portable/pom.xml
index 3e44faa..ab7d06c 100644
--- a/juddi-examples/simple-publish-portable/pom.xml
+++ b/juddi-examples/simple-publish-portable/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-publish-portable</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/subscription-notification-amqp/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/subscription-notification-amqp/pom.xml b/juddi-examples/subscription-notification-amqp/pom.xml
index f6cd3ef..f301909 100644
--- a/juddi-examples/subscription-notification-amqp/pom.xml
+++ b/juddi-examples/subscription-notification-amqp/pom.xml
@@ -12,11 +12,11 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent>
 
 	<artifactId>subscription-notification-amqp</artifactId>
-	<version>3.3.4</version>
+	<version>3.3.5-SNAPSHOT</version>
 	<name>jUDDI Example AMQP Notifier for Subscription callbacks</name>
 	<description>Demonstrates how to write a custom notifier for subscriptions</description>
 	<dependencies>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/uddi-annotations/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/uddi-annotations/pom.xml b/juddi-examples/uddi-annotations/pom.xml
index 564788a..e96f03a 100644
--- a/juddi-examples/uddi-annotations/pom.xml
+++ b/juddi-examples/uddi-annotations/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>uddi-annotations</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/uddiv2-api-bridge-example/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/uddiv2-api-bridge-example/pom.xml b/juddi-examples/uddiv2-api-bridge-example/pom.xml
index 0b88967..2833c13 100644
--- a/juddi-examples/uddiv2-api-bridge-example/pom.xml
+++ b/juddi-examples/uddiv2-api-bridge-example/pom.xml
@@ -20,11 +20,11 @@
   <parent>
     <groupId>org.apache.juddi.example</groupId>
     <artifactId>juddi-examples</artifactId>
-    <version>3.3.4</version>
+    <version>3.3.5-SNAPSHOT</version>
   </parent>
   <groupId>org.apache.juddi.example</groupId>
   <artifactId>uddiv2-api-bridge-example</artifactId>
-  <version>3.3.4</version>
+  <version>3.3.5-SNAPSHOT</version>
   <name>jUDDI Example Access UDDIv2 using Transport Adapter</name>
   <url>http://maven.apache.org</url>
   <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/wsdl2uddi-lifecyle/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/wsdl2uddi-lifecyle/pom.xml b/juddi-examples/wsdl2uddi-lifecyle/pom.xml
index e11214b..c61970d 100644
--- a/juddi-examples/wsdl2uddi-lifecyle/pom.xml
+++ b/juddi-examples/wsdl2uddi-lifecyle/pom.xml
@@ -19,7 +19,7 @@
   <parent>
      <groupId>org.apache.juddi.example</groupId>
      <artifactId>juddi-examples</artifactId>
-     <version>3.3.4</version>
+     <version>3.3.5-SNAPSHOT</version>
      <relativePath>../pom.xml</relativePath>
   </parent>
   <artifactId>wsdl2uddi-lifecycle</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-examples/wsdl2uddi/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/wsdl2uddi/pom.xml b/juddi-examples/wsdl2uddi/pom.xml
index a6221dd..feeeea1 100644
--- a/juddi-examples/wsdl2uddi/pom.xml
+++ b/juddi-examples/wsdl2uddi/pom.xml
@@ -19,7 +19,7 @@
   <parent>
      <groupId>org.apache.juddi.example</groupId>
      <artifactId>juddi-examples</artifactId>
-     <version>3.3.4</version>
+     <version>3.3.5-SNAPSHOT</version>
      <relativePath>../pom.xml</relativePath>
   </parent>
   <artifactId>wsdl2uddi</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-gui-dsig/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui-dsig/pom.xml b/juddi-gui-dsig/pom.xml
index b6bf8d2..8455cf4 100644
--- a/juddi-gui-dsig/pom.xml
+++ b/juddi-gui-dsig/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4</version>
+        <version>3.3.5-SNAPSHOT</version>
     </parent>
     <artifactId>juddi-gui-dsig</artifactId>
     <name>jUDDI Web Client Digital Signature Applet</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-gui/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui/pom.xml b/juddi-gui/pom.xml
index 8608564..268110e 100644
--- a/juddi-gui/pom.xml
+++ b/juddi-gui/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4</version>
+        <version>3.3.5-SNAPSHOT</version>
     </parent>
     <artifactId>juddi-gui-war</artifactId>
     <packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-rest-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-rest-cxf/pom.xml b/juddi-rest-cxf/pom.xml
index b6d6bb1..e7fdc7d 100644
--- a/juddi-rest-cxf/pom.xml
+++ b/juddi-rest-cxf/pom.xml
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4</version>
+        <version>3.3.5-SNAPSHOT</version>
     </parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-rest-cxf</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddi-tomcat/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-tomcat/pom.xml b/juddi-tomcat/pom.xml
index 24099e8..8043188 100644
--- a/juddi-tomcat/pom.xml
+++ b/juddi-tomcat/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent>
 	<artifactId>juddi-tomcat</artifactId>
 	<name>jUDDI Tomcat Packaging</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddiv3-war-repl/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war-repl/pom.xml b/juddiv3-war-repl/pom.xml
index 48148a4..c64edb5 100644
--- a/juddiv3-war-repl/pom.xml
+++ b/juddiv3-war-repl/pom.xml
@@ -12,7 +12,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent>
 	<artifactId>juddiv3-war-repl</artifactId>
 	<packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/juddiv3-war/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war/pom.xml b/juddiv3-war/pom.xml
index 84a45d5..1424861 100644
--- a/juddiv3-war/pom.xml
+++ b/juddiv3-war/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4</version>
+        <version>3.3.5-SNAPSHOT</version>
     </parent>
     <artifactId>juddiv3-war</artifactId>
     <packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 516c6fd..1e80c8e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <packaging>pom</packaging>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-parent</artifactId>
-    <version>3.3.4</version>
+    <version>3.3.5-SNAPSHOT</version>
     <name>jUDDI_v3 Parent</name>
     <description>jUDDI (pronounced "Judy") is an open source Java
         implementation of the Universal Description, Discovery, and
@@ -163,7 +163,7 @@ under the License.
         <connection>scm:git:https://git-wip-us.apache.org/repos/asf/juddi.git</connection>
         <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/juddi.git</developerConnection>
         <url>https://git-wip-us.apache.org/repos/asf/juddi.git/?p=juddi.git;a=summary</url>
-        <tag>juddi-3.3.4</tag>
+        <tag>HEAD</tag>
     </scm>
     <build>
         <pluginManagement>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/uddi-migration-tool/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-migration-tool/pom.xml b/uddi-migration-tool/pom.xml
index c240aad..11a720e 100644
--- a/uddi-migration-tool/pom.xml
+++ b/uddi-migration-tool/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent>
 	
 	<groupId>org.apache.juddi</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/uddi-tck-base/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-tck-base/pom.xml b/uddi-tck-base/pom.xml
index 0c9f2c1..68a1739 100644
--- a/uddi-tck-base/pom.xml
+++ b/uddi-tck-base/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent>
 	<artifactId>uddi-tck-base</artifactId>
 	<packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/706fd1ec/uddi-ws/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-ws/pom.xml b/uddi-ws/pom.xml
index 529ce00..c3d2102 100644
--- a/uddi-ws/pom.xml
+++ b/uddi-ws/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4</version>
+		<version>3.3.5-SNAPSHOT</version>
 	</parent>
 	<artifactId>uddi-ws</artifactId>
 	<packaging>bundle</packaging>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org


[4/6] juddi git commit: [maven-release-plugin] prepare release juddi-3.3.4

Posted by al...@apache.org.
[maven-release-plugin] prepare release juddi-3.3.4


Project: http://git-wip-us.apache.org/repos/asf/juddi/repo
Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/34690f7a
Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/34690f7a
Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/34690f7a

Branch: refs/heads/master
Commit: 34690f7a04e6a91f3140c3fef3b877245fb72348
Parents: 4c9b922
Author: Alex O'Ree <al...@apache.org>
Authored: Sat Feb 4 15:45:27 2017 -0500
Committer: Alex O'Ree <al...@apache.org>
Committed: Sat Feb 4 15:45:27 2017 -0500

----------------------------------------------------------------------
 juddi-client-cli/pom.xml                              |  4 ++--
 juddi-client-plugins/pom.xml                          |  4 ++--
 juddi-client/pom.xml                                  |  2 +-
 juddi-core-openjpa/pom.xml                            |  2 +-
 juddi-core/pom.xml                                    |  2 +-
 juddi-examples/ValueSetValidator/pom.xml              | 10 +++++-----
 juddi-examples/create-partition/pom.xml               |  2 +-
 juddi-examples/hello-world-embedded/pom.xml           |  2 +-
 juddi-examples/hello-world/pom.xml                    |  2 +-
 juddi-examples/more-uddi-samples/pom.xml              |  4 ++--
 juddi-examples/pom.xml                                |  2 +-
 juddi-examples/service-version/pom.xml                |  4 ++--
 juddi-examples/simple-browse/pom.xml                  |  2 +-
 juddi-examples/simple-publish-clerk/pom.xml           |  2 +-
 juddi-examples/simple-publish-portable/pom.xml        |  2 +-
 juddi-examples/subscription-notification-amqp/pom.xml |  4 ++--
 juddi-examples/uddi-annotations/pom.xml               |  2 +-
 juddi-examples/uddiv2-api-bridge-example/pom.xml      |  4 ++--
 juddi-examples/wsdl2uddi-lifecyle/pom.xml             |  2 +-
 juddi-examples/wsdl2uddi/pom.xml                      |  2 +-
 juddi-gui-dsig/pom.xml                                |  2 +-
 juddi-gui/pom.xml                                     |  2 +-
 juddi-rest-cxf/pom.xml                                |  2 +-
 juddi-tomcat/pom.xml                                  |  2 +-
 juddiv3-war-repl/pom.xml                              |  2 +-
 juddiv3-war/pom.xml                                   |  2 +-
 pom.xml                                               |  4 ++--
 uddi-migration-tool/pom.xml                           |  2 +-
 uddi-tck-base/pom.xml                                 |  2 +-
 uddi-ws/pom.xml                                       |  2 +-
 30 files changed, 41 insertions(+), 41 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-client-cli/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client-cli/pom.xml b/juddi-client-cli/pom.xml
index 7448913..6d8ac70 100644
--- a/juddi-client-cli/pom.xml
+++ b/juddi-client-cli/pom.xml
@@ -20,11 +20,11 @@
      <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4-SNAPSHOT</version>
+        <version>3.3.4</version>
     </parent> 
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-client-cli</artifactId>
-    <version>3.3.4-SNAPSHOT</version>
+    <version>3.3.4</version>
     <packaging>bundle</packaging>
 
     <name>jUDDI CLI Client</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-client-plugins/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client-plugins/pom.xml b/juddi-client-plugins/pom.xml
index b32004e..955ad16 100644
--- a/juddi-client-plugins/pom.xml
+++ b/juddi-client-plugins/pom.xml
@@ -20,11 +20,11 @@
   <parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-parent</artifactId>
-    <version>3.3.4-SNAPSHOT</version>
+    <version>3.3.4</version>
   </parent>
   <groupId>org.apache.juddi.client.plugins</groupId>
   <artifactId>juddi-client-plugins</artifactId>
-  <version>3.3.4-SNAPSHOT</version>
+  <version>3.3.4</version>
   <name>juddi-client-plugins</name>
   <url>http://maven.apache.org</url>
   <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-client/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client/pom.xml b/juddi-client/pom.xml
index 4f94255..9f4087d 100644
--- a/juddi-client/pom.xml
+++ b/juddi-client/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent> 
 	<artifactId>juddi-client</artifactId>
 	<packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-core-openjpa/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core-openjpa/pom.xml b/juddi-core-openjpa/pom.xml
index fb4069c..861de88 100644
--- a/juddi-core-openjpa/pom.xml
+++ b/juddi-core-openjpa/pom.xml
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4-SNAPSHOT</version>
+        <version>3.3.4</version>
     </parent>
     <artifactId>juddi-core-openjpa</artifactId>
     <packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-core/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core/pom.xml b/juddi-core/pom.xml
index 5304b11..29b5e34 100644
--- a/juddi-core/pom.xml
+++ b/juddi-core/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4-SNAPSHOT</version>
+        <version>3.3.4</version>
     </parent>
     <artifactId>juddi-core</artifactId>
     <packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/ValueSetValidator/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/ValueSetValidator/pom.xml b/juddi-examples/ValueSetValidator/pom.xml
index e2e6c8f..587f413 100644
--- a/juddi-examples/ValueSetValidator/pom.xml
+++ b/juddi-examples/ValueSetValidator/pom.xml
@@ -12,30 +12,30 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent>
 
 	<artifactId>example-vsv-validator</artifactId>
-	<version>3.3.4-SNAPSHOT</version>
+	<version>3.3.4</version>
 	<name>jUDDI Example Value Set Validator</name>
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>uddi-ws</artifactId>
-			<version>3.3.4-SNAPSHOT</version>
+			<version>3.3.4</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-client</artifactId>
-			<version>3.3.4-SNAPSHOT</version>
+			<version>3.3.4</version>
 			<scope>provided</scope>
 		</dependency>
 	
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-core</artifactId>
-			<version>3.3.4-SNAPSHOT</version>
+			<version>3.3.4</version>
 			<scope>provided</scope>
 		</dependency>
 	</dependencies>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/create-partition/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/create-partition/pom.xml b/juddi-examples/create-partition/pom.xml
index f50a8a2..34e0606 100644
--- a/juddi-examples/create-partition/pom.xml
+++ b/juddi-examples/create-partition/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>create-partition</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/hello-world-embedded/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world-embedded/pom.xml b/juddi-examples/hello-world-embedded/pom.xml
index 4f3c384..f85c344 100644
--- a/juddi-examples/hello-world-embedded/pom.xml
+++ b/juddi-examples/hello-world-embedded/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>hello-world-embedded</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/hello-world/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world/pom.xml b/juddi-examples/hello-world/pom.xml
index bd0be55..8b292d6 100644
--- a/juddi-examples/hello-world/pom.xml
+++ b/juddi-examples/hello-world/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>hello-world</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/more-uddi-samples/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/more-uddi-samples/pom.xml b/juddi-examples/more-uddi-samples/pom.xml
index 4d0cd86..1052ff1 100644
--- a/juddi-examples/more-uddi-samples/pom.xml
+++ b/juddi-examples/more-uddi-samples/pom.xml
@@ -20,11 +20,11 @@
     <parent>
         <groupId>org.apache.juddi.example</groupId>
         <artifactId>juddi-examples</artifactId>
-        <version>3.3.4-SNAPSHOT</version>
+        <version>3.3.4</version>
     </parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-more-samples</artifactId>
-    <version>3.3.4-SNAPSHOT</version>
+    <version>3.3.4</version>
     <name>jUDDI Even More Examples and Samples</name>
     <url>http://maven.apache.org</url>
     <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/pom.xml b/juddi-examples/pom.xml
index 14c74c0..de4d118 100644
--- a/juddi-examples/pom.xml
+++ b/juddi-examples/pom.xml
@@ -15,7 +15,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<groupId>org.apache.juddi.example</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/service-version/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/service-version/pom.xml b/juddi-examples/service-version/pom.xml
index 671872b..fb5513e 100644
--- a/juddi-examples/service-version/pom.xml
+++ b/juddi-examples/service-version/pom.xml
@@ -20,11 +20,11 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent>
 	<groupId>org.apache.juddi</groupId>
 	<artifactId>service-version</artifactId>
-	<version>3.3.4-SNAPSHOP</version>
+	<version>3.3.4</version>
 	<name>jUDDI Example Service Versioning</name>
 	<url>http://maven.apache.org</url>
 	<properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/simple-browse/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-browse/pom.xml b/juddi-examples/simple-browse/pom.xml
index 68c46e0..f41449c 100644
--- a/juddi-examples/simple-browse/pom.xml
+++ b/juddi-examples/simple-browse/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-browse</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/simple-publish-clerk/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-publish-clerk/pom.xml b/juddi-examples/simple-publish-clerk/pom.xml
index 56985ad..9bc5d89 100644
--- a/juddi-examples/simple-publish-clerk/pom.xml
+++ b/juddi-examples/simple-publish-clerk/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-publish-clerk</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/simple-publish-portable/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-publish-portable/pom.xml b/juddi-examples/simple-publish-portable/pom.xml
index 9a6547d..3e44faa 100644
--- a/juddi-examples/simple-publish-portable/pom.xml
+++ b/juddi-examples/simple-publish-portable/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-publish-portable</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/subscription-notification-amqp/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/subscription-notification-amqp/pom.xml b/juddi-examples/subscription-notification-amqp/pom.xml
index 37544d4..f6cd3ef 100644
--- a/juddi-examples/subscription-notification-amqp/pom.xml
+++ b/juddi-examples/subscription-notification-amqp/pom.xml
@@ -12,11 +12,11 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent>
 
 	<artifactId>subscription-notification-amqp</artifactId>
-	<version>3.3.4-SNAPSHOT</version>
+	<version>3.3.4</version>
 	<name>jUDDI Example AMQP Notifier for Subscription callbacks</name>
 	<description>Demonstrates how to write a custom notifier for subscriptions</description>
 	<dependencies>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/uddi-annotations/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/uddi-annotations/pom.xml b/juddi-examples/uddi-annotations/pom.xml
index 48eda59..564788a 100644
--- a/juddi-examples/uddi-annotations/pom.xml
+++ b/juddi-examples/uddi-annotations/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>uddi-annotations</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/uddiv2-api-bridge-example/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/uddiv2-api-bridge-example/pom.xml b/juddi-examples/uddiv2-api-bridge-example/pom.xml
index e6f041c..0b88967 100644
--- a/juddi-examples/uddiv2-api-bridge-example/pom.xml
+++ b/juddi-examples/uddiv2-api-bridge-example/pom.xml
@@ -20,11 +20,11 @@
   <parent>
     <groupId>org.apache.juddi.example</groupId>
     <artifactId>juddi-examples</artifactId>
-    <version>3.3.4-SNAPSHOT</version>
+    <version>3.3.4</version>
   </parent>
   <groupId>org.apache.juddi.example</groupId>
   <artifactId>uddiv2-api-bridge-example</artifactId>
-  <version>3.3.4-SNAPSHOT</version>
+  <version>3.3.4</version>
   <name>jUDDI Example Access UDDIv2 using Transport Adapter</name>
   <url>http://maven.apache.org</url>
   <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/wsdl2uddi-lifecyle/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/wsdl2uddi-lifecyle/pom.xml b/juddi-examples/wsdl2uddi-lifecyle/pom.xml
index ee27b1a..e11214b 100644
--- a/juddi-examples/wsdl2uddi-lifecyle/pom.xml
+++ b/juddi-examples/wsdl2uddi-lifecyle/pom.xml
@@ -19,7 +19,7 @@
   <parent>
      <groupId>org.apache.juddi.example</groupId>
      <artifactId>juddi-examples</artifactId>
-     <version>3.3.4-SNAPSHOT</version>
+     <version>3.3.4</version>
      <relativePath>../pom.xml</relativePath>
   </parent>
   <artifactId>wsdl2uddi-lifecycle</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-examples/wsdl2uddi/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/wsdl2uddi/pom.xml b/juddi-examples/wsdl2uddi/pom.xml
index 93ad73b..a6221dd 100644
--- a/juddi-examples/wsdl2uddi/pom.xml
+++ b/juddi-examples/wsdl2uddi/pom.xml
@@ -19,7 +19,7 @@
   <parent>
      <groupId>org.apache.juddi.example</groupId>
      <artifactId>juddi-examples</artifactId>
-     <version>3.3.4-SNAPSHOT</version>
+     <version>3.3.4</version>
      <relativePath>../pom.xml</relativePath>
   </parent>
   <artifactId>wsdl2uddi</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-gui-dsig/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui-dsig/pom.xml b/juddi-gui-dsig/pom.xml
index d8177ac..b6bf8d2 100644
--- a/juddi-gui-dsig/pom.xml
+++ b/juddi-gui-dsig/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4-SNAPSHOT</version>
+        <version>3.3.4</version>
     </parent>
     <artifactId>juddi-gui-dsig</artifactId>
     <name>jUDDI Web Client Digital Signature Applet</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-gui/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui/pom.xml b/juddi-gui/pom.xml
index 5670ed7..8608564 100644
--- a/juddi-gui/pom.xml
+++ b/juddi-gui/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4-SNAPSHOT</version>
+        <version>3.3.4</version>
     </parent>
     <artifactId>juddi-gui-war</artifactId>
     <packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-rest-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-rest-cxf/pom.xml b/juddi-rest-cxf/pom.xml
index db97b82..b6d6bb1 100644
--- a/juddi-rest-cxf/pom.xml
+++ b/juddi-rest-cxf/pom.xml
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4-SNAPSHOT</version>
+        <version>3.3.4</version>
     </parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-rest-cxf</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddi-tomcat/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-tomcat/pom.xml b/juddi-tomcat/pom.xml
index d2c4ce4..24099e8 100644
--- a/juddi-tomcat/pom.xml
+++ b/juddi-tomcat/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent>
 	<artifactId>juddi-tomcat</artifactId>
 	<name>jUDDI Tomcat Packaging</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddiv3-war-repl/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war-repl/pom.xml b/juddiv3-war-repl/pom.xml
index 0ce27b9..48148a4 100644
--- a/juddiv3-war-repl/pom.xml
+++ b/juddiv3-war-repl/pom.xml
@@ -12,7 +12,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent>
 	<artifactId>juddiv3-war-repl</artifactId>
 	<packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/juddiv3-war/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war/pom.xml b/juddiv3-war/pom.xml
index 26ab1ea..84a45d5 100644
--- a/juddiv3-war/pom.xml
+++ b/juddiv3-war/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.4-SNAPSHOT</version>
+        <version>3.3.4</version>
     </parent>
     <artifactId>juddiv3-war</artifactId>
     <packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4433d76..516c6fd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <packaging>pom</packaging>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-parent</artifactId>
-    <version>3.3.4-SNAPSHOT</version>
+    <version>3.3.4</version>
     <name>jUDDI_v3 Parent</name>
     <description>jUDDI (pronounced "Judy") is an open source Java
         implementation of the Universal Description, Discovery, and
@@ -163,7 +163,7 @@ under the License.
         <connection>scm:git:https://git-wip-us.apache.org/repos/asf/juddi.git</connection>
         <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/juddi.git</developerConnection>
         <url>https://git-wip-us.apache.org/repos/asf/juddi.git/?p=juddi.git;a=summary</url>
-        <tag>HEAD</tag>
+        <tag>juddi-3.3.4</tag>
     </scm>
     <build>
         <pluginManagement>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/uddi-migration-tool/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-migration-tool/pom.xml b/uddi-migration-tool/pom.xml
index b83bf4b..c240aad 100644
--- a/uddi-migration-tool/pom.xml
+++ b/uddi-migration-tool/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent>
 	
 	<groupId>org.apache.juddi</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/uddi-tck-base/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-tck-base/pom.xml b/uddi-tck-base/pom.xml
index aff7f28..0c9f2c1 100644
--- a/uddi-tck-base/pom.xml
+++ b/uddi-tck-base/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent>
 	<artifactId>uddi-tck-base</artifactId>
 	<packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/34690f7a/uddi-ws/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-ws/pom.xml b/uddi-ws/pom.xml
index e7147db..529ce00 100644
--- a/uddi-ws/pom.xml
+++ b/uddi-ws/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
+		<version>3.3.4</version>
 	</parent>
 	<artifactId>uddi-ws</artifactId>
 	<packaging>bundle</packaging>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org


[3/6] juddi git commit: JUDDI-968 process with pom cleanup

Posted by al...@apache.org.
JUDDI-968 process with pom cleanup


Project: http://git-wip-us.apache.org/repos/asf/juddi/repo
Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/4c9b9222
Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/4c9b9222
Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/4c9b9222

Branch: refs/heads/master
Commit: 4c9b922237fe1af4f7856c7ccce854fc50d4deab
Parents: 0d750d9
Author: Alex O'Ree <al...@apache.org>
Authored: Sat Feb 4 09:18:43 2017 -0500
Committer: Alex O'Ree <al...@apache.org>
Committed: Sat Feb 4 09:18:43 2017 -0500

----------------------------------------------------------------------
 docs/asciidoc/Guide/pom.xml                     |   2 -
 docs/examples/auth/pom.xml                      |   3 -
 juddi-client-cli/pom.xml                        |   4 -
 juddi-client-plugins/pom.xml                    |   7 +-
 juddi-core-openjpa/pom.xml                      |   1 -
 juddi-ddl-generator/pom.xml                     |   5 +-
 juddi-examples/ValueSetValidator/pom.xml        |   2 +-
 juddi-examples/hello-world-embedded/pom.xml     |   1 -
 juddi-examples/hello-world/pom.xml              |   1 -
 juddi-examples/more-uddi-samples/pom.xml        |   4 -
 juddi-examples/service-version/pom.xml          |   6 +-
 juddi-examples/simple-browse/pom.xml            |   1 -
 .../subscription-notification-amqp/pom.xml      |  13 +-
 .../uddiv2-api-bridge-example/pom.xml           |   1 -
 juddi-gui/pom.xml                               |   4 -
 juddi-rest-cxf/pom.xml                          |  10 -
 juddiv3-war/pom.xml                             | 849 +++++++++----------
 pom.xml                                         | 373 ++++++--
 uddi-migration-tool/pom.xml                     |   3 -
 uddi-tck-runner/pom.xml                         |   1 -
 uddi-tck/pom.xml                                |  11 -
 21 files changed, 731 insertions(+), 571 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/docs/asciidoc/Guide/pom.xml
----------------------------------------------------------------------
diff --git a/docs/asciidoc/Guide/pom.xml b/docs/asciidoc/Guide/pom.xml
index 7b01241..4f27f92 100644
--- a/docs/asciidoc/Guide/pom.xml
+++ b/docs/asciidoc/Guide/pom.xml
@@ -31,7 +31,6 @@
       <plugin>
         <groupId>org.asciidoctor</groupId>
         <artifactId>asciidoctor-maven-plugin</artifactId>
-        <version>0.1.4</version>
         <executions>
           <execution>
             <id>output-docbook</id>
@@ -52,7 +51,6 @@
       <plugin>
         <groupId>org.jboss.maven.plugins</groupId>
         <artifactId>maven-jdocbook-plugin</artifactId>
-        <version>2.3.8</version>
         <extensions>true</extensions>
         <dependencies>
           <dependency>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/docs/examples/auth/pom.xml
----------------------------------------------------------------------
diff --git a/docs/examples/auth/pom.xml b/docs/examples/auth/pom.xml
index 050c93b..f42954b 100644
--- a/docs/examples/auth/pom.xml
+++ b/docs/examples/auth/pom.xml
@@ -29,7 +29,6 @@
 		<dependency>
 			<groupId>org.jboss.security</groupId>
 			<artifactId>jboss-security-spi</artifactId>
-			<version>2.0.1.GA</version>
 			<scope>compile</scope>
 			<exclusions>
 				<exclusion>
@@ -41,7 +40,6 @@
 		<dependency>
 			<groupId>org.jboss.javaee</groupId>
 			<artifactId>jboss-jaspi-api</artifactId>
-			<version>1.0.0.GA</version>
 			<scope>compile</scope>
 		</dependency>
 		<dependency>
@@ -53,7 +51,6 @@
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
-			<version>4.11</version>
 			<scope>test</scope>
 		</dependency>
 	</dependencies>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-client-cli/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client-cli/pom.xml b/juddi-client-cli/pom.xml
index beefa00..7448913 100644
--- a/juddi-client-cli/pom.xml
+++ b/juddi-client-cli/pom.xml
@@ -36,7 +36,6 @@
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.11</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -48,12 +47,10 @@
         <dependency>
             <groupId>de.sven-jacobs</groupId>
             <artifactId>loremipsum</artifactId>
-            <version>1.0</version>
         </dependency>
         <dependency>
             <groupId>commons-cli</groupId>
             <artifactId>commons-cli</artifactId>
-            <version>1.2</version>
         </dependency>
 
             
@@ -117,7 +114,6 @@
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>exec-maven-plugin</artifactId>
-                        <version>1.1.1</version>
                         <executions>
                             <execution>
                                 <phase>test</phase>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-client-plugins/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client-plugins/pom.xml b/juddi-client-plugins/pom.xml
index 7e89a8a..b32004e 100644
--- a/juddi-client-plugins/pom.xml
+++ b/juddi-client-plugins/pom.xml
@@ -24,7 +24,7 @@
   </parent>
   <groupId>org.apache.juddi.client.plugins</groupId>
   <artifactId>juddi-client-plugins</artifactId>
-  <version>3.2.1</version>
+  <version>3.3.4-SNAPSHOT</version>
   <name>juddi-client-plugins</name>
   <url>http://maven.apache.org</url>
   <properties>
@@ -34,18 +34,16 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.11</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.juddi</groupId>
       <artifactId>juddi-client</artifactId>
-      <version>3.3.4-SNAPSHOT</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.jgroups</groupId>
       <artifactId>jgroups</artifactId>
-      <version>3.4.1.Final</version>
     </dependency>
     <dependency>
       <groupId>org.apache.cxf.services.ws-discovery</groupId>
@@ -55,7 +53,6 @@
 	<dependency>
 		<groupId>javax.jmdns</groupId>
 		<artifactId>jmdns</artifactId>
-		<version>3.4.1</version>
 	</dependency>
   </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-core-openjpa/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core-openjpa/pom.xml b/juddi-core-openjpa/pom.xml
index 330fb83..fb4069c 100644
--- a/juddi-core-openjpa/pom.xml
+++ b/juddi-core-openjpa/pom.xml
@@ -181,7 +181,6 @@
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.11</version>
             <scope>test</scope>
         </dependency>
         <dependency>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-ddl-generator/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-ddl-generator/pom.xml b/juddi-ddl-generator/pom.xml
index 07d09b2..08c0849 100644
--- a/juddi-ddl-generator/pom.xml
+++ b/juddi-ddl-generator/pom.xml
@@ -34,13 +34,12 @@
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
-			<version>4.11</version>
 			<scope>test</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-core</artifactId>
-			<version>3.3.4-SNAPSHOT</version>
+			<version>${project.parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.derby</groupId>
@@ -63,7 +62,6 @@
 			<plugin>
 				<groupId>org.codehaus.mojo</groupId>
 				<artifactId>exec-maven-plugin</artifactId>
-				<version>1.1</version>
 				<executions>
 					<execution>
 						<id>my-execution</id>
@@ -83,7 +81,6 @@
 			<plugin>
 			   <groupId>org.apache.maven.plugins</groupId>
 			   <artifactId>maven-antrun-plugin</artifactId>
-			   <version>1.7</version>
 			   <executions>
 				  <execution>
 				  <id>copy-swf-files</id>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-examples/ValueSetValidator/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/ValueSetValidator/pom.xml b/juddi-examples/ValueSetValidator/pom.xml
index 9b2f68d..e2e6c8f 100644
--- a/juddi-examples/ValueSetValidator/pom.xml
+++ b/juddi-examples/ValueSetValidator/pom.xml
@@ -16,7 +16,7 @@
 	</parent>
 
 	<artifactId>example-vsv-validator</artifactId>
-	<version>3.2.1</version>
+	<version>3.3.4-SNAPSHOT</version>
 	<name>jUDDI Example Value Set Validator</name>
 	<dependencies>
 		<dependency>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-examples/hello-world-embedded/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world-embedded/pom.xml b/juddi-examples/hello-world-embedded/pom.xml
index 020e7df..4f3c384 100644
--- a/juddi-examples/hello-world-embedded/pom.xml
+++ b/juddi-examples/hello-world-embedded/pom.xml
@@ -85,7 +85,6 @@
 					<plugin>
 						<groupId>org.codehaus.mojo</groupId>
 						<artifactId>exec-maven-plugin</artifactId>
-						<version>1.1.1</version>
 						<executions>
 							<execution>
 								<phase>test</phase>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-examples/hello-world/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world/pom.xml b/juddi-examples/hello-world/pom.xml
index 305103f..bd0be55 100644
--- a/juddi-examples/hello-world/pom.xml
+++ b/juddi-examples/hello-world/pom.xml
@@ -76,7 +76,6 @@
 					<plugin>
 						<groupId>org.codehaus.mojo</groupId>
 						<artifactId>exec-maven-plugin</artifactId>
-						<version>1.1.1</version>
 						<executions>
 							<execution>
 								<phase>test</phase>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-examples/more-uddi-samples/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/more-uddi-samples/pom.xml b/juddi-examples/more-uddi-samples/pom.xml
index dc510ec..4d0cd86 100644
--- a/juddi-examples/more-uddi-samples/pom.xml
+++ b/juddi-examples/more-uddi-samples/pom.xml
@@ -34,7 +34,6 @@
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.11</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -46,12 +45,10 @@
         <dependency>
             <groupId>de.sven-jacobs</groupId>
             <artifactId>loremipsum</artifactId>
-            <version>1.0</version>
         </dependency>
         <dependency>
             <groupId>commons-cli</groupId>
             <artifactId>commons-cli</artifactId>
-            <version>1.2</version>
         </dependency>
 
             
@@ -93,7 +90,6 @@
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>exec-maven-plugin</artifactId>
-                        <version>1.1.1</version>
                         <executions>
                             <execution>
                                 <phase>test</phase>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-examples/service-version/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/service-version/pom.xml b/juddi-examples/service-version/pom.xml
index 821e699..671872b 100644
--- a/juddi-examples/service-version/pom.xml
+++ b/juddi-examples/service-version/pom.xml
@@ -24,7 +24,7 @@
 	</parent>
 	<groupId>org.apache.juddi</groupId>
 	<artifactId>service-version</artifactId>
-	<version>3.2.1-SNAPSHOP</version>
+	<version>3.3.4-SNAPSHOP</version>
 	<name>jUDDI Example Service Versioning</name>
 	<url>http://maven.apache.org</url>
 	<properties>
@@ -34,13 +34,12 @@
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
-			<version>4.11</version>
 			<scope>test</scope>
 		</dependency>
 		<dependency>
 			<groupId>${project.groupId}</groupId>
 			<artifactId>juddi-client</artifactId>
-			<version>3.3.4-SNAPSHOT</version>
+			<version>${project.parent.version}</version>
 		</dependency>
 	</dependencies>
 	<build>
@@ -80,7 +79,6 @@
 					<plugin>
 						<groupId>org.codehaus.mojo</groupId>
 						<artifactId>exec-maven-plugin</artifactId>
-						<version>1.1.1</version>
 						<executions>
 							<execution>
 								<phase>test</phase>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-examples/simple-browse/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-browse/pom.xml b/juddi-examples/simple-browse/pom.xml
index 007571c..68c46e0 100644
--- a/juddi-examples/simple-browse/pom.xml
+++ b/juddi-examples/simple-browse/pom.xml
@@ -78,7 +78,6 @@
 					<plugin>
 						<groupId>org.codehaus.mojo</groupId>
 						<artifactId>exec-maven-plugin</artifactId>
-						<version>1.1.1</version>
 						<executions>
 							<execution>
 								<phase>test</phase>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-examples/subscription-notification-amqp/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/subscription-notification-amqp/pom.xml b/juddi-examples/subscription-notification-amqp/pom.xml
index a257bdb..37544d4 100644
--- a/juddi-examples/subscription-notification-amqp/pom.xml
+++ b/juddi-examples/subscription-notification-amqp/pom.xml
@@ -16,41 +16,38 @@
 	</parent>
 
 	<artifactId>subscription-notification-amqp</artifactId>
-	<version>3.2.1</version>
+	<version>3.3.4-SNAPSHOT</version>
 	<name>jUDDI Example AMQP Notifier for Subscription callbacks</name>
 	<description>Demonstrates how to write a custom notifier for subscriptions</description>
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>uddi-ws</artifactId>
-			<version>3.3.4-SNAPSHOT</version>
+			<version>${project.parent.version}</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-client</artifactId>
-			<version>3.3.4-SNAPSHOT</version>
+			<version>${project.parent.version}</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.geronimo.specs</groupId>
 			<artifactId>geronimo-jms_1.1_spec</artifactId>
-			<version>1.0</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.qpid</groupId>
 			<artifactId>qpid-client</artifactId>
-			<version>0.24</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.qpid</groupId>
 			<artifactId>qpid-amqp-1-0-client-jms</artifactId>
-			<version>0.24</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-core</artifactId>
-			<version>3.3.4-SNAPSHOT</version>
+			<version>${project.parent.version}</version>
 			<scope>provided</scope>
 		</dependency>
 	</dependencies>
@@ -58,7 +55,6 @@
 		<plugins>
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
-				<version>2.4</version>
 				<configuration>
 					<descriptorRefs>
 						<descriptorRef>jar-with-dependencies</descriptorRef>
@@ -114,7 +110,6 @@
 					<plugin>
 						<groupId>org.codehaus.mojo</groupId>
 						<artifactId>exec-maven-plugin</artifactId>
-						<version>1.1.1</version>
 						<executions>
 							<execution>
 								<phase>test</phase>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-examples/uddiv2-api-bridge-example/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/uddiv2-api-bridge-example/pom.xml b/juddi-examples/uddiv2-api-bridge-example/pom.xml
index 4405543..e6f041c 100644
--- a/juddi-examples/uddiv2-api-bridge-example/pom.xml
+++ b/juddi-examples/uddiv2-api-bridge-example/pom.xml
@@ -34,7 +34,6 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.11</version>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-gui/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui/pom.xml b/juddi-gui/pom.xml
index f1a1a01..5670ed7 100644
--- a/juddi-gui/pom.xml
+++ b/juddi-gui/pom.xml
@@ -38,12 +38,10 @@ language governing permissions and * limitations under the License. * */ -->
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <version>1.2.17</version>
         </dependency>
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
@@ -77,7 +75,6 @@ language governing permissions and * limitations under the License. * */ -->
         <dependency>
             <groupId>cglib</groupId>
             <artifactId>cglib-nodep</artifactId>
-            <version>2.1_3</version>
         </dependency>
     </dependencies>
     <build>
@@ -86,7 +83,6 @@ language governing permissions and * limitations under the License. * */ -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-dependency-plugin</artifactId>
-                <version>2.1</version>
                 <executions>
                     <execution>
                         <id>copy</id>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddi-rest-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-rest-cxf/pom.xml b/juddi-rest-cxf/pom.xml
index 0eb9a2f..db97b82 100644
--- a/juddi-rest-cxf/pom.xml
+++ b/juddi-rest-cxf/pom.xml
@@ -84,7 +84,6 @@
         <dependency>
             <groupId>org.hibernate.javax.persistence</groupId>
             <artifactId>hibernate-jpa-2.1-api</artifactId>
-            <version>1.0.0.Final</version>
         </dependency>
         <dependency>
             <groupId>org.hibernate</groupId>
@@ -105,18 +104,14 @@
         <dependency>
             <groupId>cglib</groupId>
             <artifactId>cglib-nodep</artifactId>
-            <version>2.1_3</version>
         </dependency>
         <dependency>
             <groupId>commons-codec</groupId>
             <artifactId>commons-codec</artifactId>
-            <version>1.3</version>
         </dependency>
-
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-jta_1.1_spec</artifactId>
-            <version>1.1.1</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
@@ -127,7 +122,6 @@
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-jaxrs_1.1_spec</artifactId>
-            <version>1.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
@@ -155,7 +149,6 @@
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
-            <version>2.4</version>
         </dependency>
         <dependency>
             <groupId>org.apache.cxf</groupId>
@@ -166,7 +159,6 @@
         <dependency>
             <groupId>org.codehaus.jettison</groupId>
             <artifactId>jettison</artifactId>
-            <version>1.3.4</version>
         </dependency>
 
     </dependencies>
@@ -175,7 +167,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>1.4.0</version>
                 <configuration>
                     <instructions>
                         <Export-Package>
@@ -189,7 +180,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-antrun-plugin</artifactId>
-                <version>1.3</version>
                 <executions>
                     <execution>
                         <phase>generate-resources</phase>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/juddiv3-war/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war/pom.xml b/juddiv3-war/pom.xml
index bbe6d3e..26ab1ea 100644
--- a/juddiv3-war/pom.xml
+++ b/juddiv3-war/pom.xml
@@ -1,436 +1,431 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- * Copyright 2001-2009 The Apache Software Foundation. * * Licensed under 
-	the Apache License, Version 2.0 (the "License"); * you may not use this file 
-	except in compliance with the License. * You may obtain a copy of the License 
-	at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by 
-	applicable law or agreed to in writing, software * distributed under the 
-	License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 
-	OF ANY KIND, either express or implied. * See the License for the specific 
-	language governing permissions and * limitations under the License. * */ -->
+the Apache License, Version 2.0 (the "License"); * you may not use this file 
+except in compliance with the License. * You may obtain a copy of the License 
+at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by 
+applicable law or agreed to in writing, software * distributed under the 
+License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 
+OF ANY KIND, either express or implied. * See the License for the specific 
+language governing permissions and * limitations under the License. * */ -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<parent>
-		<groupId>org.apache.juddi</groupId>
-		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
-	</parent>
-	<artifactId>juddiv3-war</artifactId>
-	<packaging>war</packaging>
-	<name>jUDDI Services WAR</name>
-	<url>http://juddi.apache.org</url>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.juddi</groupId>
+        <artifactId>juddi-parent</artifactId>
+        <version>3.3.4-SNAPSHOT</version>
+    </parent>
+    <artifactId>juddiv3-war</artifactId>
+    <packaging>war</packaging>
+    <name>jUDDI Services WAR</name>
+    <url>http://juddi.apache.org</url>
 
-	<dependencies>
-		<dependency>
-			<artifactId>uddi-ws</artifactId>
-			<groupId>org.apache.juddi</groupId>
-			<version>${project.parent.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>commons-logging</groupId>
-			<artifactId>commons-logging</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-			<version>2.5</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>commons-configuration</groupId>
-			<artifactId>commons-configuration</artifactId>
-			<version>1.10</version>
-		</dependency>
-		    <dependency>
-	         <groupId>org.apache.commons</groupId>
-             <artifactId>commons-lang3</artifactId>
-		</dependency>
-		<dependency>
-		<groupId>org.json</groupId>
-		<artifactId>json</artifactId>
-		<version>20090211</version>
-	</dependency>
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<version>1.2.17</version>
-		</dependency>
-	</dependencies>
-	<build>
-		<finalName>juddiv3</finalName>
-	</build>
-	<profiles>
-		<!-- the hibernate-jbossws-native profile builds a war for jboss, where 
-			hibernate and jbossws are provided by the appserver -->
-		<profile>
-			<id>hibernate-jbossws-native</id>
-			<activation>
-				<activeByDefault>false</activeByDefault>
-			</activation>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-war-plugin</artifactId>
-						<configuration>
-							<webResources>
-								<resource>
-									<directory>JPA/Hibernate-JBoss</directory>
-								</resource>
-								<resource>
-									<directory>JAX-WS/JBossWS-Native</directory>
-								</resource>
-							</webResources>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-			<dependencies>
-				<dependency>
-					<artifactId>juddi-core</artifactId>
-					<groupId>org.apache.juddi</groupId>
-					<version>${project.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>javax.persistence</groupId>
-					<artifactId>persistence-api</artifactId>
-					<version>1.0</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>org.hibernate</groupId>
-					<artifactId>hibernate</artifactId>
-					<version>3.2.5.ga</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>org.hibernate</groupId>
-					<artifactId>hibernate-entitymanager</artifactId>
-					<version>3.3.1.ga</version>
-					<scope>provided</scope>
-				</dependency>
+    <dependencies>
+        <dependency>
+            <artifactId>uddi-ws</artifactId>
+            <groupId>org.apache.juddi</groupId>
+            <version>${project.parent.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+			
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-configuration</groupId>
+            <artifactId>commons-configuration</artifactId>
+		
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.json</groupId>
+            <artifactId>json</artifactId>
+		
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+			
+        </dependency>
+    </dependencies>
+    <build>
+        <finalName>juddiv3</finalName>
+    </build>
+    <profiles>
+        <!-- the hibernate-jbossws-native profile builds a war for jboss, where 
+        hibernate and jbossws are provided by the appserver -->
+        <profile>
+            <id>hibernate-jbossws-native</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-war-plugin</artifactId>
+                        <configuration>
+                            <webResources>
+                                <resource>
+                                    <directory>JPA/Hibernate-JBoss</directory>
+                                </resource>
+                                <resource>
+                                    <directory>JAX-WS/JBossWS-Native</directory>
+                                </resource>
+                            </webResources>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+            <dependencies>
+                <dependency>
+                    <artifactId>juddi-core</artifactId>
+                    <groupId>org.apache.juddi</groupId>
+                    <version>${project.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>javax.persistence</groupId>
+                    <artifactId>persistence-api</artifactId>
+					
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.hibernate</groupId>
+                    <artifactId>hibernate</artifactId>
+					
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.hibernate</groupId>
+                    <artifactId>hibernate-entitymanager</artifactId>
+					
+                    <scope>provided</scope>
+                </dependency>
 
-			</dependencies>
-		</profile>
-		<profile>
-			<id>hibernate-jbossws-cxf</id>
-			<activation>
-				<activeByDefault>false</activeByDefault>
-			</activation>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-war-plugin</artifactId>
-						<configuration>
-							<webResources>
-								<resource>
-									<directory>JPA/Hibernate-JBoss</directory>
-								</resource>
-								<resource>
-									<directory>JAX-WS/JBossWS-CXF</directory>
-								</resource>
-							</webResources>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-			<dependencies>
-				<dependency>
-					<artifactId>juddi-core</artifactId>
-					<groupId>org.apache.juddi</groupId>
-					<version>${project.version}</version>
-				</dependency>
-                      		<dependency>
-					<artifactId>juddi-rest-cxf</artifactId>
-					<groupId>org.apache.juddi</groupId>
-					<version>${project.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>javax.persistence</groupId>
-					<artifactId>persistence-api</artifactId>
-					<version>1.0</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>org.hibernate</groupId>
-					<artifactId>hibernate</artifactId>
-					<version>3.2.5.ga</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>org.hibernate</groupId>
-					<artifactId>hibernate-entitymanager</artifactId>
-					<version>3.3.1.ga</version>
-					<scope>provided</scope>
-				</dependency>
-				<dependency>
-					<groupId>cglib</groupId>
-					<artifactId>cglib-nodep</artifactId>
-					<version>2.1_3</version>
-					<scope>provided</scope>
-				</dependency>
-			</dependencies>
-		</profile>
-		<profile>
-			<!-- the hibernate profile builds a war for tomcat, with hibernate and 
-				cxf in the war -->
-			<id>hibernate</id>
-			<activation>
-				<activeByDefault>false</activeByDefault>
-			</activation>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-war-plugin</artifactId>
-						<configuration>
-							<webResources>
-								<resource>
-									<directory>JPA/Hibernate</directory>
-								</resource>
-								<resource>
-									<directory>JAX-WS/CXF</directory>
-								</resource>
-							</webResources>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-			<dependencies>
-				<dependency>
-					<artifactId>juddi-core</artifactId>
-					<groupId>org.apache.juddi</groupId>
-					<version>${project.version}</version>
-				</dependency>
-                                <dependency>
-					<artifactId>juddi-rest-cxf</artifactId>
-					<groupId>org.apache.juddi</groupId>
-					<version>${project.version}</version>
-				</dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>hibernate-jbossws-cxf</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-war-plugin</artifactId>
+                        <configuration>
+                            <webResources>
+                                <resource>
+                                    <directory>JPA/Hibernate-JBoss</directory>
+                                </resource>
+                                <resource>
+                                    <directory>JAX-WS/JBossWS-CXF</directory>
+                                </resource>
+                            </webResources>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+            <dependencies>
+                <dependency>
+                    <artifactId>juddi-core</artifactId>
+                    <groupId>org.apache.juddi</groupId>
+                    <version>${project.version}</version>
+                </dependency>
+                <dependency>
+                    <artifactId>juddi-rest-cxf</artifactId>
+                    <groupId>org.apache.juddi</groupId>
+                    <version>${project.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>javax.persistence</groupId>
+                    <artifactId>persistence-api</artifactId>
+					
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.hibernate</groupId>
+                    <artifactId>hibernate</artifactId>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.hibernate</groupId>
+                    <artifactId>hibernate-entitymanager</artifactId>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>cglib</groupId>
+                    <artifactId>cglib-nodep</artifactId>
+                    <scope>provided</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <!-- the hibernate profile builds a war for tomcat, with hibernate and 
+            cxf in the war -->
+            <id>hibernate</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-war-plugin</artifactId>
+                        <configuration>
+                            <webResources>
+                                <resource>
+                                    <directory>JPA/Hibernate</directory>
+                                </resource>
+                                <resource>
+                                    <directory>JAX-WS/CXF</directory>
+                                </resource>
+                            </webResources>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+            <dependencies>
+                <dependency>
+                    <artifactId>juddi-core</artifactId>
+                    <groupId>org.apache.juddi</groupId>
+                    <version>${project.version}</version>
+                </dependency>
+                <dependency>
+                    <artifactId>juddi-rest-cxf</artifactId>
+                    <groupId>org.apache.juddi</groupId>
+                    <version>${project.version}</version>
+                </dependency>
 				
-				<dependency>
-					<groupId>org.apache.cxf</groupId>
-					<artifactId>cxf-rt-frontend-jaxws</artifactId>
-					<version>${cxf.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.cxf</groupId>
-					<artifactId>cxf-rt-frontend-jaxrs</artifactId>
-					<version>${cxf.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.cxf</groupId>
-					<artifactId>cxf-rt-transports-http</artifactId>
-					<version>${cxf.version}</version>
-					<exclusions>
-						<exclusion>
-							<groupId>cglib</groupId>
-							<artifactId>cglib</artifactId>
-						</exclusion>
-					</exclusions>
-				</dependency>
-				<dependency>
-					<groupId>org.springframework</groupId>
-					<artifactId>spring-context</artifactId>
-					<version>${springframework.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.springframework</groupId>
-					<artifactId>spring-web</artifactId>
-					<version>${springframework.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.geronimo.javamail</groupId>
-					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-				</dependency>
-			</dependencies>
-		</profile>
-		<profile>
-			<!-- the openjpa profile builds a war for tomcat, with openjpa and cxf 
-				in the war -->
-			<id>openjpa</id>
-			<activation>
-				<activeByDefault>true</activeByDefault>
-			</activation>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-war-plugin</artifactId>
-						<configuration>
-							<webResources>
-								<resource>
-									<directory>JPA/OpenJPA</directory>
-								</resource>
-								<resource>
-									<directory>JAX-WS/CXF</directory>
-								</resource>
-							</webResources>
-						</configuration>
-					</plugin>
-				</plugins>
-			</build>
-			<dependencies>
-				<dependency>
-					<artifactId>juddi-core-openjpa</artifactId>
-					<groupId>org.apache.juddi</groupId>
-					<version>${project.version}</version>
-					<exclusions>
-						<exclusion>
-							<groupId>junit</groupId>
-							<artifactId>junit</artifactId>
-						</exclusion>
-					</exclusions>
-				</dependency>
-                <dependency>
-					<artifactId>juddi-rest-cxf</artifactId>
-					<groupId>org.apache.juddi</groupId>
-					<version>${project.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.cxf</groupId>
-					<artifactId>cxf-rt-frontend-jaxws</artifactId>
-					<version>${cxf.version}</version>
-				</dependency>
-				<!--added AO 6/8/2013 support for JSON encoding on REST endpoints -->
-				<dependency>
-					<groupId>org.apache.cxf</groupId>
-					<artifactId>cxf-rt-rs-extension-providers</artifactId>
-					<version>${cxf.version}</version>
-				</dependency>
+                <dependency>
+                    <groupId>org.apache.cxf</groupId>
+                    <artifactId>cxf-rt-frontend-jaxws</artifactId>
+                    <version>${cxf.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.cxf</groupId>
+                    <artifactId>cxf-rt-frontend-jaxrs</artifactId>
+                    <version>${cxf.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.cxf</groupId>
+                    <artifactId>cxf-rt-transports-http</artifactId>
+                    <version>${cxf.version}</version>
+                    <exclusions>
+                        <exclusion>
+                            <groupId>cglib</groupId>
+                            <artifactId>cglib</artifactId>
+                        </exclusion>
+                    </exclusions>
+                </dependency>
+                <dependency>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                    <version>${springframework.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                    <version>${springframework.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.javamail</groupId>
+                    <artifactId>geronimo-javamail_1.4_mail</artifactId>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <!-- the openjpa profile builds a war for tomcat, with openjpa and cxf 
+            in the war -->
+            <id>openjpa</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-war-plugin</artifactId>
+                        <configuration>
+                            <webResources>
+                                <resource>
+                                    <directory>JPA/OpenJPA</directory>
+                                </resource>
+                                <resource>
+                                    <directory>JAX-WS/CXF</directory>
+                                </resource>
+                            </webResources>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+            <dependencies>
+                <dependency>
+                    <artifactId>juddi-core-openjpa</artifactId>
+                    <groupId>org.apache.juddi</groupId>
+                    <version>${project.version}</version>
+                    <exclusions>
+                        <exclusion>
+                            <groupId>junit</groupId>
+                            <artifactId>junit</artifactId>
+                        </exclusion>
+                    </exclusions>
+                </dependency>
+                <dependency>
+                    <artifactId>juddi-rest-cxf</artifactId>
+                    <groupId>org.apache.juddi</groupId>
+                    <version>${project.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.cxf</groupId>
+                    <artifactId>cxf-rt-frontend-jaxws</artifactId>
+                    <version>${cxf.version}</version>
+                </dependency>
+                <!--added AO 6/8/2013 support for JSON encoding on REST endpoints -->
+                <dependency>
+                    <groupId>org.apache.cxf</groupId>
+                    <artifactId>cxf-rt-rs-extension-providers</artifactId>
+                    <version>${cxf.version}</version>
+                </dependency>
 				
-				<dependency>
-					<groupId>org.codehaus.jettison</groupId>
-					<artifactId>jettison</artifactId>
-					<version>1.3.4</version>
-				</dependency>
-				<!--END added AO 6/8/2013 support for JSON encoding on REST endpoints -->
-				<dependency>
-					<groupId>org.apache.cxf</groupId>
-					<artifactId>cxf-rt-frontend-jaxrs</artifactId>
-					<version>${cxf.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.cxf</groupId>
-					<artifactId>cxf-rt-transports-http</artifactId>
-					<version>${cxf.version}</version>
-					<exclusions>
-						<exclusion>
-							<groupId>cglib</groupId>
-							<artifactId>cglib</artifactId>
-						</exclusion>
-					</exclusions>
-				</dependency>
-				<dependency>
-					<groupId>org.springframework</groupId>
-					<artifactId>spring-context</artifactId>
-					<version>${springframework.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.springframework</groupId>
-					<artifactId>spring-web</artifactId>
-					<version>${springframework.version}</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.geronimo.javamail</groupId>
-					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-				</dependency>
-			</dependencies>
-		</profile>
-		<profile>
-			<!-- the openjpa-axis2 profile builds a war for tomcat, with openjpa and 
-				axis2 in the war -->
-			<id>axis2</id>
-			<activation>
-				<activeByDefault>false</activeByDefault>
-			</activation>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-war-plugin</artifactId>
-						<configuration>
-							<webResources>
-								<resource>
-									<directory>JPA/OpenJPA</directory>
-								</resource>
-								<resource>
-									<directory>JAX-WS/Axis2</directory>
-								</resource>
-							</webResources>
-						</configuration>
-					</plugin>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-antrun-plugin</artifactId>
-						<version>1.6</version>
-						<executions>
-							<execution>
-								<id>default-cli</id>
-								<configuration>
-									<target name="axis2-servicejars">
-										<dependencyfilesets prefix="mydeps." />
-										<mkdir dir="${basedir}/target/juddiv3/WEB-INF/servicejars" />
-										<copy todir="${basedir}/target/juddiv3/WEB-INF/servicejars">
-											<fileset refid="mydeps.org.apache.juddi:juddi-core-openjpa:jar" />
-										</copy>
-									</target>
-								</configuration>
-								<phase>compile</phase>
-								<goals>
-									<goal>run</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-			</build>
-			<dependencies>
-				<!-- providing this through ant in the servicejars directory -->
-				<dependency>
-					<artifactId>juddi-core-openjpa</artifactId>
-					<groupId>org.apache.juddi</groupId>
-					<version>${project.version}</version>
-					<exclusions>
-						<exclusion>
-							<groupId>junit</groupId>
-							<artifactId>junit</artifactId>
-						</exclusion>
-					</exclusions>
-				</dependency>
-				<!-- and then add the axis2 jars -->
-				<dependency>
-					<groupId>org.apache.axis2</groupId>
-					<artifactId>axis2</artifactId>
-					<version>1.6.2</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.axis2</groupId>
-					<artifactId>axis2-jaxws</artifactId>
-					<version>1.6.2</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.axis2</groupId>
-					<artifactId>axis2-transport-http</artifactId>
-					<version>1.6.2</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.axis2</groupId>
-					<artifactId>axis2-transport-local</artifactId>
-					<version>1.6.2</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.xmlbeans</groupId>
-					<artifactId>xmlbeans</artifactId>
-					<version>2.4.0</version>
-				</dependency>
-				<dependency>
-					<groupId>org.apache.geronimo.javamail</groupId>
-					<artifactId>geronimo-javamail_1.4_mail</artifactId>
-				</dependency>
-			</dependencies>
-		</profile>
-		<profile>
+                <dependency>
+                    <groupId>org.codehaus.jettison</groupId>
+                    <artifactId>jettison</artifactId>
+                </dependency>
+                <!--END added AO 6/8/2013 support for JSON encoding on REST endpoints -->
+                <dependency>
+                    <groupId>org.apache.cxf</groupId>
+                    <artifactId>cxf-rt-frontend-jaxrs</artifactId>
+                    <version>${cxf.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.cxf</groupId>
+                    <artifactId>cxf-rt-transports-http</artifactId>
+                    <version>${cxf.version}</version>
+                    <exclusions>
+                        <exclusion>
+                            <groupId>cglib</groupId>
+                            <artifactId>cglib</artifactId>
+                        </exclusion>
+                    </exclusions>
+                </dependency>
+                <dependency>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-context</artifactId>
+                    <version>${springframework.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-web</artifactId>
+                    <version>${springframework.version}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.javamail</groupId>
+                    <artifactId>geronimo-javamail_1.4_mail</artifactId>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <!-- the openjpa-axis2 profile builds a war for tomcat, with openjpa and 
+            axis2 in the war -->
+            <id>axis2</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-war-plugin</artifactId>
+                        <configuration>
+                            <webResources>
+                                <resource>
+                                    <directory>JPA/OpenJPA</directory>
+                                </resource>
+                                <resource>
+                                    <directory>JAX-WS/Axis2</directory>
+                                </resource>
+                            </webResources>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-antrun-plugin</artifactId>
+                        <version>1.6</version>
+                        <executions>
+                            <execution>
+                                <id>default-cli</id>
+                                <configuration>
+                                    <target name="axis2-servicejars">
+                                        <dependencyfilesets prefix="mydeps." />
+                                        <mkdir dir="${basedir}/target/juddiv3/WEB-INF/servicejars" />
+                                        <copy todir="${basedir}/target/juddiv3/WEB-INF/servicejars">
+                                            <fileset refid="mydeps.org.apache.juddi:juddi-core-openjpa:jar" />
+                                        </copy>
+                                    </target>
+                                </configuration>
+                                <phase>compile</phase>
+                                <goals>
+                                    <goal>run</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+            <dependencies>
+                <!-- providing this through ant in the servicejars directory -->
+                <dependency>
+                    <artifactId>juddi-core-openjpa</artifactId>
+                    <groupId>org.apache.juddi</groupId>
+                    <version>${project.version}</version>
+                    <exclusions>
+                        <exclusion>
+                            <groupId>junit</groupId>
+                            <artifactId>junit</artifactId>
+                        </exclusion>
+                    </exclusions>
+                </dependency>
+                <!-- and then add the axis2 jars -->
+                <dependency>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>axis2</artifactId>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>axis2-jaxws</artifactId>
+
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>axis2-transport-http</artifactId>
+
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>axis2-transport-local</artifactId>
+
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.xmlbeans</groupId>
+                    <artifactId>xmlbeans</artifactId>
+
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.javamail</groupId>
+                    <artifactId>geronimo-javamail_1.4_mail</artifactId>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
             <id>jboss7up</id>
             <activation>
                 <activeByDefault>false</activeByDefault>
@@ -517,5 +512,5 @@
                 
             </dependencies>
         </profile>
-	</profiles>
+    </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 8d38abe..4433d76 100644
--- a/pom.xml
+++ b/pom.xml
@@ -163,13 +163,39 @@ under the License.
         <connection>scm:git:https://git-wip-us.apache.org/repos/asf/juddi.git</connection>
         <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/juddi.git</developerConnection>
         <url>https://git-wip-us.apache.org/repos/asf/juddi.git/?p=juddi.git;a=summary</url>
-      <tag>HEAD</tag>
-  </scm>
+        <tag>HEAD</tag>
+    </scm>
     <build>
         <pluginManagement>
             <plugins>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-jarsigner-plugin</artifactId>
+                    <version>1.4</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.sling</groupId>
+                    <artifactId>maven-jspc-plugin</artifactId>
+                    <version>2.0.8</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.asciidoctor</groupId>
+                    <artifactId>asciidoctor-maven-plugin</artifactId>
+                    <version>0.1.4</version>
+                </plugin>
+                <plugin>
+                    <!-- Entry needed to enable jdocbook unzipping -->
+                    <groupId>org.jboss.maven.plugins</groupId>
+                    <artifactId>maven-jdocbook-plugin</artifactId>
+                    <version>2.3.8</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>exec-maven-plugin</artifactId>
+                    <version>1.1.1</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-war-plugin</artifactId>
                     <version>2.4</version>
                 </plugin>
@@ -223,7 +249,7 @@ under the License.
                     <artifactId>maven-javadoc-plugin</artifactId>
                     <configuration>
                         <aggregate>true</aggregate>
-			<additionalparam>${javadoc.extra.settings}</additionalparam>
+                        <additionalparam>${javadoc.extra.settings}</additionalparam>
                     </configuration>
                     <executions>
                         <execution>
@@ -235,16 +261,36 @@ under the License.
                         </execution>
                     </executions>
                 </plugin>
-		<plugin>
-			<groupId>org.apache.rat</groupId>
-			<artifactId>apache-rat-plugin</artifactId>
-			<version>0.11</version>
-		</plugin>
-		<plugin>
-			<groupId>org.jacoco</groupId>
-			<artifactId>jacoco-maven-plugin</artifactId>
-			<version>0.7.5.201505241946</version>
-		</plugin>
+                <plugin>
+                    <groupId>org.apache.rat</groupId>
+                    <artifactId>apache-rat-plugin</artifactId>
+                    <version>0.11</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.jacoco</groupId>
+                    <artifactId>jacoco-maven-plugin</artifactId>
+                    <version>0.7.5.201505241946</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-antrun-plugin</artifactId>
+                    <version>1.6</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-dependency-plugin</artifactId>
+                    <version>2.1</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-clean-plugin</artifactId>
+                    <version>2.6.1</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <version>2.4</version>
+                </plugin>
             </plugins>
         </pluginManagement>
         <plugins>
@@ -315,7 +361,7 @@ under the License.
             <plugin>
                 <groupId>org.apache.rat</groupId>
                 <artifactId>apache-rat-plugin</artifactId>
-		<version>0.11</version>
+                <version>0.11</version>
             </plugin>
             <plugin>
                 <groupId>org.owasp</groupId>
@@ -369,6 +415,113 @@ under the License.
     <dependencyManagement>
         <dependencies>
             <dependency>
+                <groupId>org.easymock</groupId>
+                <artifactId>easymock</artifactId>
+                <version>2.0</version>
+
+            </dependency>
+            <dependency>
+                <groupId>dumbster</groupId>
+                <artifactId>dumbster</artifactId>
+                <version>1.5</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-net</groupId>
+                <artifactId>commons-net</artifactId>
+                <version>3.3</version>
+            </dependency>
+            <dependency>
+                <groupId>javax.mail</groupId>
+                <artifactId>mail</artifactId>
+                <version>1.4.7</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.commons</groupId>
+                <artifactId>commons-email</artifactId>
+                <version>1.3.2</version>
+            </dependency>
+
+            <dependency>
+                <!-- Entry needed to enable jdocbook unzipping -->
+                <groupId>org.jboss.maven.plugins</groupId>
+                <artifactId>maven-jdocbook-plugin</artifactId>
+                <version>2.3.10</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.hibernate.javax.persistence</groupId>
+                <artifactId>hibernate-jpa-2.1-api</artifactId>
+                <version>1.0.0.Final</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-codec</groupId>
+                <artifactId>commons-codec</artifactId>
+                <version>1.10</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-jta_1.1_spec</artifactId>
+                <version>1.1.1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-jaxrs_1.1_spec</artifactId>
+                <version>1.0</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-jms_1.1_spec</artifactId>
+                <version>1.0</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.qpid</groupId>
+                <artifactId>qpid-client</artifactId>
+                <version>0.24</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.qpid</groupId>
+                <artifactId>qpid-amqp-1-0-client-jms</artifactId>
+                <version>0.24</version>
+            </dependency>
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+                <version>2.5</version>
+
+            </dependency>
+            <dependency>
+                <groupId>org.jboss.security</groupId>
+                <artifactId>jboss-security-spi</artifactId>
+                <version>2.0.1.GA</version>
+            </dependency>
+            <dependency>
+                <groupId>org.jboss.javaee</groupId>
+                <artifactId>jboss-jaspi-api</artifactId>
+                <version>1.0.0.GA</version>
+            </dependency>
+            <dependency>
+                <groupId>javax.jmdns</groupId>
+                <artifactId>jmdns</artifactId>
+                <version>3.4.1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.jgroups</groupId>
+                <artifactId>jgroups</artifactId>
+                <version>3.4.1.Final</version>
+            </dependency>
+            <!-- a lorem ipsum generator MIT license-->
+            <dependency>
+                <groupId>de.sven-jacobs</groupId>
+                <artifactId>loremipsum</artifactId>
+                <version>1.0</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-cli</groupId>
+                <artifactId>commons-cli</artifactId>
+                <version>1.3.1</version>
+            </dependency>
+            <dependency>
                 <groupId>junit</groupId>
                 <artifactId>junit</artifactId>
                 <version>4.12</version>
@@ -409,19 +562,91 @@ under the License.
                 <version>1.8.4</version>
             </dependency>
             <dependency>
-                    <groupId>org.apache.httpcomponents</groupId>
-                    <artifactId>httpclient</artifactId>
-                    <version>4.5.2</version>
+                <groupId>org.apache.httpcomponents</groupId>
+                <artifactId>httpclient</artifactId>
+                <version>4.5.2</version>
+            </dependency>
+            <dependency>
+                <groupId>org.json</groupId>
+                <artifactId>json</artifactId>
+                <version>20090211</version>
+            </dependency>
+            <dependency>
+                <groupId>log4j</groupId>
+                <artifactId>log4j</artifactId>
+                <version>1.2.17</version>
+            </dependency>
+            <dependency>
+                <groupId>javax.persistence</groupId>
+                <artifactId>persistence-api</artifactId>
+                <version>1.0</version>
+
+            </dependency>
+            <dependency>
+                <groupId>cglib</groupId>
+                <artifactId>cglib-nodep</artifactId>
+                <version>2.1_3</version>
+					
             </dependency>
             <dependency>
-                    <groupId>commons-configuration</groupId>
-                    <artifactId>commons-configuration</artifactId>
-                    <version>1.10</version>
+                <groupId>org.hibernate</groupId>
+                <artifactId>hibernate</artifactId>
+                <version>3.2.5.ga</version>
+
             </dependency>
+             <dependency>
+            <groupId>org.hibernate</groupId>
+            <artifactId>hibernate-core</artifactId>
+            <version>4.2.21.Final</version>
+          
+        </dependency>
             <dependency>
-                    <groupId>org.apache.commons</groupId>
-                    <artifactId>commons-lang3</artifactId>
-                    <version>3.5</version>
+                <groupId>org.hibernate</groupId>
+                <artifactId>hibernate-entitymanager</artifactId>
+                <version>4.2.21.Final</version>
+
+            </dependency>
+                                
+            <dependency>
+                <groupId>org.apache.axis2</groupId>
+                <artifactId>axis2</artifactId>
+                <version>1.6.2</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.axis2</groupId>
+                <artifactId>axis2-jaxws</artifactId>
+                <version>1.6.2</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.axis2</groupId>
+                <artifactId>axis2-transport-http</artifactId>
+                <version>1.6.2</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.axis2</groupId>
+                <artifactId>axis2-transport-local</artifactId>
+                <version>1.6.2</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.xmlbeans</groupId>
+                <artifactId>xmlbeans</artifactId>
+                <version>2.4.0</version>
+            </dependency>
+                                
+            <dependency>
+                <groupId>org.codehaus.jettison</groupId>
+                <artifactId>jettison</artifactId>
+                <version>1.3.4</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-configuration</groupId>
+                <artifactId>commons-configuration</artifactId>
+                <version>1.10</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.commons</groupId>
+                <artifactId>commons-lang3</artifactId>
+                <version>3.5</version>
             </dependency>
         </dependencies>
     </dependencyManagement>
@@ -443,7 +668,7 @@ under the License.
             <layout>default</layout>
         </repository>
 
-         <repository>
+        <repository>
             <id>central</id>
             <name>Maven Central Repository</name>
             <url>http://central.maven.org/maven2</url>
@@ -464,15 +689,15 @@ under the License.
     </pluginRepositories>
     
     <profiles>
-	<profile>
-	  <id>doclint-java8-disable</id>
-	  <activation>
-	    <jdk>[1.8,)</jdk>
-	  </activation>
-	  <properties>
-		  <javadoc.extra.settings>-Xdoclint:none</javadoc.extra.settings>
-	  </properties>
-	</profile>
+        <profile>
+            <id>doclint-java8-disable</id>
+            <activation>
+                <jdk>[1.8,)</jdk>
+            </activation>
+            <properties>
+                <javadoc.extra.settings>-Xdoclint:none</javadoc.extra.settings>
+            </properties>
+        </profile>
 
         <!-- inherit from the apache parent: release-profile -->
         <profile>
@@ -543,7 +768,7 @@ under the License.
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-source-plugin</artifactId>
-				    <version>2.0.3</version>
+                        <version>2.0.3</version>
                         <executions>
                             <execution>
                                 <id>attach-sources</id>
@@ -650,46 +875,46 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-		    <plugin>
-			    <groupId>org.jacoco</groupId>
-			    <artifactId>jacoco-maven-plugin</artifactId>
-			    <executions>
-				    <execution>
-					    <id>jacoco-prepare-agent</id>
-					    <goals>
-						    <goal>prepare-agent</goal>
-					    </goals>
-				    </execution>
-				    <execution>
-					    <id>jacoco-prepare-agent-integration</id>
-					    <goals>
-						    <goal>prepare-agent-integration</goal>
-					    </goals>
-				    </execution>
-				    <execution>
-					    <id>jacoco-report</id>
-					    <goals>
-						    <goal>report</goal>
-					    </goals>
-				    </execution>
-				    <execution>
-					    <id>jacoco-integration</id>
-					    <goals>
-						    <goal>report-integration</goal>
-					    </goals>
-				    </execution>
-				    <execution>
-					    <id>jacoco-check</id>
-					    <goals>
-						    <goal>check</goal>
-					    </goals>
-					    <configuration>
-						    <rules />
-					    </configuration>
-				    </execution>
-			    </executions>
-		    </plugin>
-		</plugins>
+                    <plugin>
+                        <groupId>org.jacoco</groupId>
+                        <artifactId>jacoco-maven-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>jacoco-prepare-agent</id>
+                                <goals>
+                                    <goal>prepare-agent</goal>
+                                </goals>
+                            </execution>
+                            <execution>
+                                <id>jacoco-prepare-agent-integration</id>
+                                <goals>
+                                    <goal>prepare-agent-integration</goal>
+                                </goals>
+                            </execution>
+                            <execution>
+                                <id>jacoco-report</id>
+                                <goals>
+                                    <goal>report</goal>
+                                </goals>
+                            </execution>
+                            <execution>
+                                <id>jacoco-integration</id>
+                                <goals>
+                                    <goal>report-integration</goal>
+                                </goals>
+                            </execution>
+                            <execution>
+                                <id>jacoco-check</id>
+                                <goals>
+                                    <goal>check</goal>
+                                </goals>
+                                <configuration>
+                                    <rules />
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
             </build>
         </profile>
     </profiles>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/uddi-migration-tool/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-migration-tool/pom.xml b/uddi-migration-tool/pom.xml
index 6485e79..b83bf4b 100644
--- a/uddi-migration-tool/pom.xml
+++ b/uddi-migration-tool/pom.xml
@@ -37,7 +37,6 @@
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
-			<version>4.11</version>
 			<scope>test</scope>
 		</dependency>
 		<dependency>
@@ -48,7 +47,6 @@
 		<dependency>
 			<groupId>commons-cli</groupId>
 			<artifactId>commons-cli</artifactId>
-			<version>1.2</version>
 		</dependency>
 	</dependencies>
 
@@ -57,7 +55,6 @@
 		<plugins>
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
-				<version>2.4</version>
 				<configuration>
 					<descriptorRefs>
 						<descriptorRef>jar-with-dependencies</descriptorRef>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/uddi-tck-runner/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-tck-runner/pom.xml b/uddi-tck-runner/pom.xml
index a68dc8c..9f5532e 100644
--- a/uddi-tck-runner/pom.xml
+++ b/uddi-tck-runner/pom.xml
@@ -33,7 +33,6 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.11</version>
     </dependency>
     <dependency>
       <groupId>${project.groupId}</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/4c9b9222/uddi-tck/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-tck/pom.xml b/uddi-tck/pom.xml
index 1822c87..4b67071 100644
--- a/uddi-tck/pom.xml
+++ b/uddi-tck/pom.xml
@@ -82,33 +82,27 @@
 		<dependency>
 		    <groupId>org.easymock</groupId>
 		    <artifactId>easymock</artifactId>
-		    <version>2.0</version>
 		    <scope>test</scope>
 		</dependency>
 		<dependency>
 			<groupId>dumbster</groupId>
 			<artifactId>dumbster</artifactId>
-			<version>1.5</version>
 		</dependency>
 		<dependency>
 			<groupId>commons-net</groupId>
 			<artifactId>commons-net</artifactId>
-			<version>3.3</version>
 		</dependency>
 		<dependency>
 			<groupId>javax.mail</groupId>
 			<artifactId>mail</artifactId>
-			<version>1.4.7</version>
 		</dependency>
 		<dependency>
 			<groupId>commons-codec</groupId>
 			<artifactId>commons-codec</artifactId>
-			<version>1.9</version>
 		</dependency>
    		<dependency>
 			<groupId>org.apache.commons</groupId>
 			<artifactId>commons-email</artifactId>
-			<version>1.3.2</version>
 		</dependency>
 					
 	</dependencies>
@@ -116,7 +110,6 @@
 		<plugins>
 			<plugin>
 			    <artifactId>maven-clean-plugin</artifactId>
-			    <version>2.6.1</version>
 			    <configuration>
 			      <filesets>
 			        <fileset>
@@ -133,7 +126,6 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-dependency-plugin</artifactId>
-				<version>2.1</version>
 				<executions>
 					<execution>
 						<id>copy</id>
@@ -158,7 +150,6 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-antrun-plugin</artifactId>
-				<version>1.3</version>
 				<executions>
 					<execution>
 						<id>test</id>
@@ -305,7 +296,6 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-surefire-plugin</artifactId>
-				<version>2.4</version>
 				<configuration>
 					<skip>true</skip>
 					<includes>
@@ -396,7 +386,6 @@
 					<plugin>
 						<groupId>org.apache.maven.plugins</groupId>
 						<artifactId>maven-surefire-plugin</artifactId>
-						<version>2.4</version>
 						<configuration>
 							<skip>true</skip>
 							<includes>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org


[6/6] juddi git commit: [maven-release-plugin] rollback the release of juddi-3.3.4

Posted by al...@apache.org.
[maven-release-plugin] rollback the release of juddi-3.3.4


Project: http://git-wip-us.apache.org/repos/asf/juddi/repo
Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/a6cb2090
Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/a6cb2090
Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/a6cb2090

Branch: refs/heads/master
Commit: a6cb20900abe981935f86115541bf86ed5392f42
Parents: 706fd1e
Author: Alex O'Ree <al...@apache.org>
Authored: Sat Feb 4 17:17:24 2017 -0500
Committer: Alex O'Ree <al...@apache.org>
Committed: Sat Feb 4 17:17:24 2017 -0500

----------------------------------------------------------------------
 juddi-client-cli/pom.xml                              |  4 ++--
 juddi-client-plugins/pom.xml                          |  4 ++--
 juddi-client/pom.xml                                  |  2 +-
 juddi-core-openjpa/pom.xml                            |  2 +-
 juddi-core/pom.xml                                    |  2 +-
 juddi-examples/ValueSetValidator/pom.xml              | 10 +++++-----
 juddi-examples/create-partition/pom.xml               |  2 +-
 juddi-examples/hello-world-embedded/pom.xml           |  2 +-
 juddi-examples/hello-world/pom.xml                    |  2 +-
 juddi-examples/more-uddi-samples/pom.xml              |  4 ++--
 juddi-examples/pom.xml                                |  2 +-
 juddi-examples/service-version/pom.xml                |  4 ++--
 juddi-examples/simple-browse/pom.xml                  |  2 +-
 juddi-examples/simple-publish-clerk/pom.xml           |  2 +-
 juddi-examples/simple-publish-portable/pom.xml        |  2 +-
 juddi-examples/subscription-notification-amqp/pom.xml |  4 ++--
 juddi-examples/uddi-annotations/pom.xml               |  2 +-
 juddi-examples/uddiv2-api-bridge-example/pom.xml      |  4 ++--
 juddi-examples/wsdl2uddi-lifecyle/pom.xml             |  2 +-
 juddi-examples/wsdl2uddi/pom.xml                      |  2 +-
 juddi-gui-dsig/pom.xml                                |  2 +-
 juddi-gui/pom.xml                                     |  2 +-
 juddi-rest-cxf/pom.xml                                |  2 +-
 juddi-tomcat/pom.xml                                  |  2 +-
 juddiv3-war-repl/pom.xml                              |  2 +-
 juddiv3-war/pom.xml                                   |  2 +-
 pom.xml                                               |  2 +-
 uddi-migration-tool/pom.xml                           |  2 +-
 uddi-tck-base/pom.xml                                 |  2 +-
 uddi-ws/pom.xml                                       |  2 +-
 30 files changed, 40 insertions(+), 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-client-cli/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client-cli/pom.xml b/juddi-client-cli/pom.xml
index 9340343..7448913 100644
--- a/juddi-client-cli/pom.xml
+++ b/juddi-client-cli/pom.xml
@@ -20,11 +20,11 @@
      <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.5-SNAPSHOT</version>
+        <version>3.3.4-SNAPSHOT</version>
     </parent> 
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-client-cli</artifactId>
-    <version>3.3.5-SNAPSHOT</version>
+    <version>3.3.4-SNAPSHOT</version>
     <packaging>bundle</packaging>
 
     <name>jUDDI CLI Client</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-client-plugins/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client-plugins/pom.xml b/juddi-client-plugins/pom.xml
index 71f01fd..b32004e 100644
--- a/juddi-client-plugins/pom.xml
+++ b/juddi-client-plugins/pom.xml
@@ -20,11 +20,11 @@
   <parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-parent</artifactId>
-    <version>3.3.5-SNAPSHOT</version>
+    <version>3.3.4-SNAPSHOT</version>
   </parent>
   <groupId>org.apache.juddi.client.plugins</groupId>
   <artifactId>juddi-client-plugins</artifactId>
-  <version>3.3.5-SNAPSHOT</version>
+  <version>3.3.4-SNAPSHOT</version>
   <name>juddi-client-plugins</name>
   <url>http://maven.apache.org</url>
   <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-client/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client/pom.xml b/juddi-client/pom.xml
index c625f80..4f94255 100644
--- a/juddi-client/pom.xml
+++ b/juddi-client/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent> 
 	<artifactId>juddi-client</artifactId>
 	<packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-core-openjpa/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core-openjpa/pom.xml b/juddi-core-openjpa/pom.xml
index 3b4f6d3..fb4069c 100644
--- a/juddi-core-openjpa/pom.xml
+++ b/juddi-core-openjpa/pom.xml
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.5-SNAPSHOT</version>
+        <version>3.3.4-SNAPSHOT</version>
     </parent>
     <artifactId>juddi-core-openjpa</artifactId>
     <packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-core/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core/pom.xml b/juddi-core/pom.xml
index ab5cce3..5304b11 100644
--- a/juddi-core/pom.xml
+++ b/juddi-core/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.5-SNAPSHOT</version>
+        <version>3.3.4-SNAPSHOT</version>
     </parent>
     <artifactId>juddi-core</artifactId>
     <packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/ValueSetValidator/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/ValueSetValidator/pom.xml b/juddi-examples/ValueSetValidator/pom.xml
index 3169785..e2e6c8f 100644
--- a/juddi-examples/ValueSetValidator/pom.xml
+++ b/juddi-examples/ValueSetValidator/pom.xml
@@ -12,30 +12,30 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent>
 
 	<artifactId>example-vsv-validator</artifactId>
-	<version>3.3.5-SNAPSHOT</version>
+	<version>3.3.4-SNAPSHOT</version>
 	<name>jUDDI Example Value Set Validator</name>
 	<dependencies>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>uddi-ws</artifactId>
-			<version>3.3.5-SNAPSHOT</version>
+			<version>3.3.4-SNAPSHOT</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-client</artifactId>
-			<version>3.3.5-SNAPSHOT</version>
+			<version>3.3.4-SNAPSHOT</version>
 			<scope>provided</scope>
 		</dependency>
 	
 		<dependency>
 			<groupId>org.apache.juddi</groupId>
 			<artifactId>juddi-core</artifactId>
-			<version>3.3.5-SNAPSHOT</version>
+			<version>3.3.4-SNAPSHOT</version>
 			<scope>provided</scope>
 		</dependency>
 	</dependencies>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/create-partition/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/create-partition/pom.xml b/juddi-examples/create-partition/pom.xml
index 469767e..f50a8a2 100644
--- a/juddi-examples/create-partition/pom.xml
+++ b/juddi-examples/create-partition/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>create-partition</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/hello-world-embedded/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world-embedded/pom.xml b/juddi-examples/hello-world-embedded/pom.xml
index abfd7b0..4f3c384 100644
--- a/juddi-examples/hello-world-embedded/pom.xml
+++ b/juddi-examples/hello-world-embedded/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>hello-world-embedded</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/hello-world/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/hello-world/pom.xml b/juddi-examples/hello-world/pom.xml
index ac74492..bd0be55 100644
--- a/juddi-examples/hello-world/pom.xml
+++ b/juddi-examples/hello-world/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>hello-world</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/more-uddi-samples/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/more-uddi-samples/pom.xml b/juddi-examples/more-uddi-samples/pom.xml
index e9181d9..4d0cd86 100644
--- a/juddi-examples/more-uddi-samples/pom.xml
+++ b/juddi-examples/more-uddi-samples/pom.xml
@@ -20,11 +20,11 @@
     <parent>
         <groupId>org.apache.juddi.example</groupId>
         <artifactId>juddi-examples</artifactId>
-        <version>3.3.5-SNAPSHOT</version>
+        <version>3.3.4-SNAPSHOT</version>
     </parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-more-samples</artifactId>
-    <version>3.3.5-SNAPSHOT</version>
+    <version>3.3.4-SNAPSHOT</version>
     <name>jUDDI Even More Examples and Samples</name>
     <url>http://maven.apache.org</url>
     <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/pom.xml b/juddi-examples/pom.xml
index 98c43b6..14c74c0 100644
--- a/juddi-examples/pom.xml
+++ b/juddi-examples/pom.xml
@@ -15,7 +15,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<groupId>org.apache.juddi.example</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/service-version/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/service-version/pom.xml b/juddi-examples/service-version/pom.xml
index 3c1fbc8..671872b 100644
--- a/juddi-examples/service-version/pom.xml
+++ b/juddi-examples/service-version/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent>
 	<groupId>org.apache.juddi</groupId>
 	<artifactId>service-version</artifactId>
@@ -39,7 +39,7 @@
 		<dependency>
 			<groupId>${project.groupId}</groupId>
 			<artifactId>juddi-client</artifactId>
-			<version>3.3.5-SNAPSHOT</version>
+			<version>${project.parent.version}</version>
 		</dependency>
 	</dependencies>
 	<build>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/simple-browse/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-browse/pom.xml b/juddi-examples/simple-browse/pom.xml
index cd6ee1c..68c46e0 100644
--- a/juddi-examples/simple-browse/pom.xml
+++ b/juddi-examples/simple-browse/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-browse</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/simple-publish-clerk/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-publish-clerk/pom.xml b/juddi-examples/simple-publish-clerk/pom.xml
index 5c52bc2..56985ad 100644
--- a/juddi-examples/simple-publish-clerk/pom.xml
+++ b/juddi-examples/simple-publish-clerk/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-publish-clerk</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/simple-publish-portable/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/simple-publish-portable/pom.xml b/juddi-examples/simple-publish-portable/pom.xml
index ab7d06c..9a6547d 100644
--- a/juddi-examples/simple-publish-portable/pom.xml
+++ b/juddi-examples/simple-publish-portable/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>simple-publish-portable</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/subscription-notification-amqp/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/subscription-notification-amqp/pom.xml b/juddi-examples/subscription-notification-amqp/pom.xml
index f301909..37544d4 100644
--- a/juddi-examples/subscription-notification-amqp/pom.xml
+++ b/juddi-examples/subscription-notification-amqp/pom.xml
@@ -12,11 +12,11 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent>
 
 	<artifactId>subscription-notification-amqp</artifactId>
-	<version>3.3.5-SNAPSHOT</version>
+	<version>3.3.4-SNAPSHOT</version>
 	<name>jUDDI Example AMQP Notifier for Subscription callbacks</name>
 	<description>Demonstrates how to write a custom notifier for subscriptions</description>
 	<dependencies>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/uddi-annotations/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/uddi-annotations/pom.xml b/juddi-examples/uddi-annotations/pom.xml
index e96f03a..48eda59 100644
--- a/juddi-examples/uddi-annotations/pom.xml
+++ b/juddi-examples/uddi-annotations/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi.example</groupId>
 		<artifactId>juddi-examples</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 		<relativePath>../pom.xml</relativePath>
 	</parent>
 	<artifactId>uddi-annotations</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/uddiv2-api-bridge-example/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/uddiv2-api-bridge-example/pom.xml b/juddi-examples/uddiv2-api-bridge-example/pom.xml
index 2833c13..e6f041c 100644
--- a/juddi-examples/uddiv2-api-bridge-example/pom.xml
+++ b/juddi-examples/uddiv2-api-bridge-example/pom.xml
@@ -20,11 +20,11 @@
   <parent>
     <groupId>org.apache.juddi.example</groupId>
     <artifactId>juddi-examples</artifactId>
-    <version>3.3.5-SNAPSHOT</version>
+    <version>3.3.4-SNAPSHOT</version>
   </parent>
   <groupId>org.apache.juddi.example</groupId>
   <artifactId>uddiv2-api-bridge-example</artifactId>
-  <version>3.3.5-SNAPSHOT</version>
+  <version>3.3.4-SNAPSHOT</version>
   <name>jUDDI Example Access UDDIv2 using Transport Adapter</name>
   <url>http://maven.apache.org</url>
   <properties>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/wsdl2uddi-lifecyle/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/wsdl2uddi-lifecyle/pom.xml b/juddi-examples/wsdl2uddi-lifecyle/pom.xml
index c61970d..ee27b1a 100644
--- a/juddi-examples/wsdl2uddi-lifecyle/pom.xml
+++ b/juddi-examples/wsdl2uddi-lifecyle/pom.xml
@@ -19,7 +19,7 @@
   <parent>
      <groupId>org.apache.juddi.example</groupId>
      <artifactId>juddi-examples</artifactId>
-     <version>3.3.5-SNAPSHOT</version>
+     <version>3.3.4-SNAPSHOT</version>
      <relativePath>../pom.xml</relativePath>
   </parent>
   <artifactId>wsdl2uddi-lifecycle</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-examples/wsdl2uddi/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/wsdl2uddi/pom.xml b/juddi-examples/wsdl2uddi/pom.xml
index feeeea1..93ad73b 100644
--- a/juddi-examples/wsdl2uddi/pom.xml
+++ b/juddi-examples/wsdl2uddi/pom.xml
@@ -19,7 +19,7 @@
   <parent>
      <groupId>org.apache.juddi.example</groupId>
      <artifactId>juddi-examples</artifactId>
-     <version>3.3.5-SNAPSHOT</version>
+     <version>3.3.4-SNAPSHOT</version>
      <relativePath>../pom.xml</relativePath>
   </parent>
   <artifactId>wsdl2uddi</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-gui-dsig/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui-dsig/pom.xml b/juddi-gui-dsig/pom.xml
index 8455cf4..d8177ac 100644
--- a/juddi-gui-dsig/pom.xml
+++ b/juddi-gui-dsig/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.5-SNAPSHOT</version>
+        <version>3.3.4-SNAPSHOT</version>
     </parent>
     <artifactId>juddi-gui-dsig</artifactId>
     <name>jUDDI Web Client Digital Signature Applet</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-gui/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui/pom.xml b/juddi-gui/pom.xml
index 268110e..5670ed7 100644
--- a/juddi-gui/pom.xml
+++ b/juddi-gui/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.5-SNAPSHOT</version>
+        <version>3.3.4-SNAPSHOT</version>
     </parent>
     <artifactId>juddi-gui-war</artifactId>
     <packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-rest-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-rest-cxf/pom.xml b/juddi-rest-cxf/pom.xml
index e7fdc7d..db97b82 100644
--- a/juddi-rest-cxf/pom.xml
+++ b/juddi-rest-cxf/pom.xml
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.5-SNAPSHOT</version>
+        <version>3.3.4-SNAPSHOT</version>
     </parent>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-rest-cxf</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddi-tomcat/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-tomcat/pom.xml b/juddi-tomcat/pom.xml
index 8043188..d2c4ce4 100644
--- a/juddi-tomcat/pom.xml
+++ b/juddi-tomcat/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent>
 	<artifactId>juddi-tomcat</artifactId>
 	<name>jUDDI Tomcat Packaging</name>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddiv3-war-repl/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war-repl/pom.xml b/juddiv3-war-repl/pom.xml
index c64edb5..0ce27b9 100644
--- a/juddiv3-war-repl/pom.xml
+++ b/juddiv3-war-repl/pom.xml
@@ -12,7 +12,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent>
 	<artifactId>juddiv3-war-repl</artifactId>
 	<packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/juddiv3-war/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war/pom.xml b/juddiv3-war/pom.xml
index 1424861..26ab1ea 100644
--- a/juddiv3-war/pom.xml
+++ b/juddiv3-war/pom.xml
@@ -12,7 +12,7 @@ language governing permissions and * limitations under the License. * */ -->
     <parent>
         <groupId>org.apache.juddi</groupId>
         <artifactId>juddi-parent</artifactId>
-        <version>3.3.5-SNAPSHOT</version>
+        <version>3.3.4-SNAPSHOT</version>
     </parent>
     <artifactId>juddiv3-war</artifactId>
     <packaging>war</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1e80c8e..4433d76 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@ under the License.
     <packaging>pom</packaging>
     <groupId>org.apache.juddi</groupId>
     <artifactId>juddi-parent</artifactId>
-    <version>3.3.5-SNAPSHOT</version>
+    <version>3.3.4-SNAPSHOT</version>
     <name>jUDDI_v3 Parent</name>
     <description>jUDDI (pronounced "Judy") is an open source Java
         implementation of the Universal Description, Discovery, and

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/uddi-migration-tool/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-migration-tool/pom.xml b/uddi-migration-tool/pom.xml
index 11a720e..b83bf4b 100644
--- a/uddi-migration-tool/pom.xml
+++ b/uddi-migration-tool/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent>
 	
 	<groupId>org.apache.juddi</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/uddi-tck-base/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-tck-base/pom.xml b/uddi-tck-base/pom.xml
index 68a1739..aff7f28 100644
--- a/uddi-tck-base/pom.xml
+++ b/uddi-tck-base/pom.xml
@@ -19,7 +19,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent>
 	<artifactId>uddi-tck-base</artifactId>
 	<packaging>bundle</packaging>

http://git-wip-us.apache.org/repos/asf/juddi/blob/a6cb2090/uddi-ws/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-ws/pom.xml b/uddi-ws/pom.xml
index c3d2102..e7147db 100644
--- a/uddi-ws/pom.xml
+++ b/uddi-ws/pom.xml
@@ -20,7 +20,7 @@
 	<parent>
 		<groupId>org.apache.juddi</groupId>
 		<artifactId>juddi-parent</artifactId>
-		<version>3.3.5-SNAPSHOT</version>
+		<version>3.3.4-SNAPSHOT</version>
 	</parent>
 	<artifactId>uddi-ws</artifactId>
 	<packaging>bundle</packaging>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org


[2/6] juddi git commit: JUDDI-968 more progress with pom clean up and dependency updates

Posted by al...@apache.org.
JUDDI-968 more progress with pom clean up and dependency updates


Project: http://git-wip-us.apache.org/repos/asf/juddi/repo
Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/0d750d9f
Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/0d750d9f
Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/0d750d9f

Branch: refs/heads/master
Commit: 0d750d9fd87b5726753600ac3e893245e17d68d4
Parents: 1e5ff4c
Author: Alex O'Ree <al...@apache.org>
Authored: Fri Feb 3 07:37:22 2017 -0500
Committer: Alex O'Ree <al...@apache.org>
Committed: Fri Feb 3 07:37:22 2017 -0500

----------------------------------------------------------------------
 juddi-client/pom.xml                    |   2 -
 juddi-core-openjpa/pom.xml              |   4 +-
 juddi-core/pom.xml                      |   4 +-
 juddi-examples/uddi-annotations/pom.xml |   1 -
 juddi-gui-dsig/pom.xml                  |   4 +-
 juddi-gui/pom.xml                       |   4 -
 juddi-rest-cxf/pom.xml                  | 430 +++++++++++++--------------
 juddiv3-war-repl/pom.xml                |   9 +-
 juddiv3-war/pom.xml                     |   9 +-
 pom.xml                                 |  26 +-
 uddi-migration-tool/pom.xml             |   2 +-
 uddi-tck-base/pom.xml                   |   1 -
 uddi-tck-runner/pom.xml                 |   2 +-
 13 files changed, 237 insertions(+), 261 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddi-client/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-client/pom.xml b/juddi-client/pom.xml
index db1e833..4f94255 100644
--- a/juddi-client/pom.xml
+++ b/juddi-client/pom.xml
@@ -35,12 +35,10 @@
 		<dependency>
 			<groupId>commons-configuration</groupId>
 			<artifactId>commons-configuration</artifactId>
-			<version>1.9</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.commons</groupId>
 			<artifactId>commons-lang3</artifactId>
-			<version>3.1</version>
 		</dependency>
 		<dependency>
 			<groupId>commons-collections</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddi-core-openjpa/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core-openjpa/pom.xml b/juddi-core-openjpa/pom.xml
index 5b017cd..330fb83 100644
--- a/juddi-core-openjpa/pom.xml
+++ b/juddi-core-openjpa/pom.xml
@@ -121,12 +121,12 @@
         <dependency>
             <groupId>commons-configuration</groupId>
             <artifactId>commons-configuration</artifactId>
-            <version>1.9</version>
+
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-lang3</artifactId>
-            <version>3.1</version>
+
         </dependency>
         <dependency>
             <groupId>commons-collections</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddi-core/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-core/pom.xml b/juddi-core/pom.xml
index 48cd70a..5304b11 100644
--- a/juddi-core/pom.xml
+++ b/juddi-core/pom.xml
@@ -105,12 +105,12 @@ language governing permissions and * limitations under the License. * */ -->
         <dependency>
             <groupId>commons-configuration</groupId>
             <artifactId>commons-configuration</artifactId>
-            <version>1.9</version>
+
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-lang3</artifactId>
-            <version>3.1</version>
+
         </dependency>
         <dependency>
             <groupId>org.hibernate</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddi-examples/uddi-annotations/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-examples/uddi-annotations/pom.xml b/juddi-examples/uddi-annotations/pom.xml
index bcb5010..48eda59 100644
--- a/juddi-examples/uddi-annotations/pom.xml
+++ b/juddi-examples/uddi-annotations/pom.xml
@@ -147,7 +147,6 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-war-plugin</artifactId>
-				<version>2.0.1</version>
 				<configuration>
 					<dependentWarExcludes>WEB-INF/classes/RENAME4SALES_juddi_custom_install_data/*,
 						WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/*</dependentWarExcludes>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddi-gui-dsig/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui-dsig/pom.xml b/juddi-gui-dsig/pom.xml
index 41b11a8..d8177ac 100644
--- a/juddi-gui-dsig/pom.xml
+++ b/juddi-gui-dsig/pom.xml
@@ -18,7 +18,7 @@ language governing permissions and * limitations under the License. * */ -->
     <name>jUDDI Web Client Digital Signature Applet</name>
 
     <build>
-        <finalName>${artifactId}-${version}</finalName>
+        <finalName>${project.artifactId}-${project.version}</finalName>
         <plugins>
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
@@ -52,7 +52,7 @@ language governing permissions and * limitations under the License. * */ -->
                         <phase>package</phase>
                         <configuration>
 
-                            <archive>${project.build.directory}/${artifactId}-${version}-jar-with-dependencies.jar</archive>
+                            <archive>${project.build.directory}/${project.artifactId}-${project.version}-jar-with-dependencies.jar</archive>
                             <keystore>src/main/keystore/signing-jar.keystore</keystore>
                             <alias>applet</alias>
                             <storepass>applet</storepass>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddi-gui/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-gui/pom.xml b/juddi-gui/pom.xml
index defc904..f1a1a01 100644
--- a/juddi-gui/pom.xml
+++ b/juddi-gui/pom.xml
@@ -34,7 +34,6 @@ language governing permissions and * limitations under the License. * */ -->
         <dependency>
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
-            <version>1.1.3</version>
         </dependency>
         <dependency>
             <groupId>log4j</groupId>
@@ -50,12 +49,10 @@ language governing permissions and * limitations under the License. * */ -->
         <dependency>
             <groupId>commons-configuration</groupId>
             <artifactId>commons-configuration</artifactId>
-            <version>1.9</version>
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
 			  <artifactId>commons-lang3</artifactId>
-			  <version>3.2.1</version>
         </dependency>
         <dependency>
             <groupId>commons-collections</groupId>
@@ -180,7 +177,6 @@ language governing permissions and * limitations under the License. * */ -->
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-war-plugin</artifactId>
-                        <version>2.4</version>
                         <configuration>
                             <packagingExcludes>
                                 WEB-INF/lib/cxf*.jar,

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddi-rest-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/juddi-rest-cxf/pom.xml b/juddi-rest-cxf/pom.xml
index b93afc8..0eb9a2f 100644
--- a/juddi-rest-cxf/pom.xml
+++ b/juddi-rest-cxf/pom.xml
@@ -1,113 +1,86 @@
 <?xml version="1.0"?>
 <!--
- * Copyright 2001-2009 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */ -->
+* Copyright 2001-2009 The Apache Software Foundation.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* 
+*      http://www.apache.org/licenses/LICENSE-2.0
+* 
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+*/ -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<parent>
-		<groupId>org.apache.juddi</groupId>
-		<artifactId>juddi-parent</artifactId>
-		<version>3.3.4-SNAPSHOT</version>
-	</parent>
-	<groupId>org.apache.juddi</groupId>
-	<artifactId>juddi-rest-cxf</artifactId>
-	<packaging>jar</packaging>
-	<name>jUDDI REST Services using Apache CXF</name>
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.juddi</groupId>
-			<artifactId>uddi-ws</artifactId>
-			<version>${project.parent.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.juddi</groupId>
-			<artifactId>juddi-client</artifactId>
-			<version>${project.parent.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.juddi</groupId>
-			<artifactId>juddi-core</artifactId>
-			<version>${project.parent.version}</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.juddi</groupId>
-			<artifactId>uddi-tck-base</artifactId>
-			<version>${project.parent.version}</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>commons-configuration</groupId>
-			<artifactId>commons-configuration</artifactId>
-			<version>1.9</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.commons</groupId>
-			<artifactId>commons-lang3</artifactId>
-			<version>3.1</version>
-		</dependency>
-		<dependency>
-			<groupId>commons-collections</groupId>
-			<artifactId>commons-collections</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.cxf</groupId>
-			<artifactId>cxf-bundle-jaxrs</artifactId>
-			<version>${cxf.version}</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.juddi</groupId>
-			<artifactId>uddi-ws</artifactId>
-			<version>${project.parent.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.juddi</groupId>
-			<artifactId>juddi-client</artifactId>
-			<version>${project.parent.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring-test</artifactId>
-			<version>3.2.2.RELEASE</version>
-			<scope>test</scope>
-		</dependency>
-					<dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring-context</artifactId>
-			<version>3.2.2.RELEASE</version>
-			<scope>test</scope>
-		</dependency>
-            
-		<dependency>
-			<groupId>org.apache.juddi</groupId>
-			<artifactId>uddi-tck-base</artifactId>
-			<version>${project.parent.version}</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>commons-configuration</groupId>
-			<artifactId>commons-configuration</artifactId>
-			<version>1.9</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.commons</groupId>
-			<artifactId>commons-lang3</artifactId>
-			<version>3.1</version>
-		</dependency>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.juddi</groupId>
+        <artifactId>juddi-parent</artifactId>
+        <version>3.3.4-SNAPSHOT</version>
+    </parent>
+    <groupId>org.apache.juddi</groupId>
+    <artifactId>juddi-rest-cxf</artifactId>
+    <packaging>jar</packaging>
+    <name>jUDDI REST Services using Apache CXF</name>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.juddi</groupId>
+            <artifactId>uddi-ws</artifactId>
+            <version>${project.parent.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.juddi</groupId>
+            <artifactId>juddi-client</artifactId>
+            <version>${project.parent.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.juddi</groupId>
+            <artifactId>juddi-core</artifactId>
+            <version>${project.parent.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.juddi</groupId>
+            <artifactId>uddi-tck-base</artifactId>
+            <version>${project.parent.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-configuration</groupId>
+            <artifactId>commons-configuration</artifactId>
+			
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+			
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.cxf</groupId>
+            <artifactId>cxf-bundle-jaxrs</artifactId>
+            <version>${cxf.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-test</artifactId>
+            <version>3.2.2.RELEASE</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+            <version>3.2.2.RELEASE</version>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.hibernate.javax.persistence</groupId>
             <artifactId>hibernate-jpa-2.1-api</artifactId>
@@ -129,136 +102,131 @@
             <artifactId>hibernate-entitymanager</artifactId>
             <version>4.3.6.Final</version>
         </dependency>
-		<dependency>
-			<groupId>cglib</groupId>
-			<artifactId>cglib-nodep</artifactId>
-			<version>2.1_3</version>
-		</dependency>
-		<dependency>
-			<groupId>commons-codec</groupId>
-			<artifactId>commons-codec</artifactId>
-			<version>1.3</version>
-		</dependency>
+        <dependency>
+            <groupId>cglib</groupId>
+            <artifactId>cglib-nodep</artifactId>
+            <version>2.1_3</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>1.3</version>
+        </dependency>
 
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-jta_1.1_spec</artifactId>
-			<version>1.1.1</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.javamail</groupId>
-			<artifactId>geronimo-javamail_1.4_mail</artifactId>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-jaxrs_1.1_spec</artifactId>
-			<version>1.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.derby</groupId>
-			<artifactId>derby</artifactId>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>mysql</groupId>
-			<artifactId>mysql-connector-java</artifactId>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.postgresql</groupId>
-			<artifactId>postgresql</artifactId>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.mockejb</groupId>
-			<artifactId>mockejb</artifactId>
-			<version>0.6-beta2</version>
-			<scope>test</scope>
-		</dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-jta_1.1_spec</artifactId>
+            <version>1.1.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.javamail</groupId>
+            <artifactId>geronimo-javamail_1.4_mail</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-jaxrs_1.1_spec</artifactId>
+            <version>1.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derby</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>mysql</groupId>
+            <artifactId>mysql-connector-java</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.postgresql</groupId>
+            <artifactId>postgresql</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockejb</groupId>
+            <artifactId>mockejb</artifactId>
+            <version>0.6-beta2</version>
+            <scope>test</scope>
+        </dependency>
 		
-		<dependency>
-			<groupId>commons-collections</groupId>
-			<artifactId>commons-collections</artifactId>
-			<version>3.2</version>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-			<version>2.4</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.cxf</groupId>
-			<artifactId>cxf-rt-rs-extension-providers</artifactId>
-			<version>${cxf.version}</version>
-		</dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.cxf</groupId>
+            <artifactId>cxf-rt-rs-extension-providers</artifactId>
+            <version>${cxf.version}</version>
+        </dependency>
 
-		<dependency>
-			<groupId>org.codehaus.jettison</groupId>
-			<artifactId>jettison</artifactId>
-			<version>1.3.4</version>
-		</dependency>
+        <dependency>
+            <groupId>org.codehaus.jettison</groupId>
+            <artifactId>jettison</artifactId>
+            <version>1.3.4</version>
+        </dependency>
 
-	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<version>1.4.0</version>
-				<configuration>
-					<instructions>
-						<Export-Package>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>1.4.0</version>
+                <configuration>
+                    <instructions>
+                        <Export-Package>
 
                             org.apache.juddi.api.impl.rest
 
-						</Export-Package>
-					</instructions>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-antrun-plugin</artifactId>
-				<version>1.3</version>
-				<executions>
-					<execution>
-						<phase>generate-resources</phase>
-						<configuration>
-							<tasks>
-								<delete dir="juddi-derby-test-db" />
-							</tasks>
-						</configuration>
-						<goals>
-							<goal>run</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>hibernate3-maven-plugin</artifactId>
-				<version>2.2</version>
-				<!-- <executions> <execution> <phase>process-classes</phase> <goals> 
+                        </Export-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.3</version>
+                <executions>
+                    <execution>
+                        <phase>generate-resources</phase>
+                        <configuration>
+                            <tasks>
+                                <delete dir="juddi-derby-test-db" />
+                            </tasks>
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>hibernate3-maven-plugin</artifactId>
+                <version>2.2</version>
+                <!-- <executions> <execution> <phase>process-classes</phase> <goals> 
                 <goal>hbm2ddl</goal> </goals> </execution> </executions> -->
-				<configuration>
-					<components>
-						<component>
-							<name>hbm2ddl</name>
-							<implementation>jpaconfiguration</implementation>
-						</component>
-					</components>
-					<componentProperties>
-						<persistenceunit>juddiDatabase</persistenceunit>
-						<outputfilename>schema.ddl</outputfilename>
-						<drop>false</drop>
-						<create>true</create>
-						<export>false</export>
-						<format>true</format>
-					</componentProperties>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
+                <configuration>
+                    <components>
+                        <component>
+                            <name>hbm2ddl</name>
+                            <implementation>jpaconfiguration</implementation>
+                        </component>
+                    </components>
+                    <componentProperties>
+                        <persistenceunit>juddiDatabase</persistenceunit>
+                        <outputfilename>schema.ddl</outputfilename>
+                        <drop>false</drop>
+                        <create>true</create>
+                        <export>false</export>
+                        <format>true</format>
+                    </componentProperties>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddiv3-war-repl/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war-repl/pom.xml b/juddiv3-war-repl/pom.xml
index 2fbc0ef..0ce27b9 100644
--- a/juddiv3-war-repl/pom.xml
+++ b/juddiv3-war-repl/pom.xml
@@ -28,7 +28,7 @@
 		<dependency>
 			<groupId>commons-logging</groupId>
 			<artifactId>commons-logging</artifactId>
-			<version>1.1.3</version>
+			
 		</dependency>
 		<dependency>
 			<groupId>javax.servlet</groupId>
@@ -39,13 +39,12 @@
 		<dependency>
 			<groupId>commons-configuration</groupId>
 			<artifactId>commons-configuration</artifactId>
-			<version>1.10</version>
+			
 		</dependency>
 		    <dependency>
 	         <groupId>org.apache.commons</groupId>
   <artifactId>commons-lang3</artifactId>
-  <version>3.2.1</version>
-			</dependency>
+  			</dependency>
 			<dependency>
 		<groupId>org.json</groupId>
 		<artifactId>json</artifactId>
@@ -442,7 +441,7 @@
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-war-plugin</artifactId>
-                        <version>2.4</version>
+
                         <configuration>
                             <packagingExcludes>
                                 WEB-INF/lib/hibernate*.jar,

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/juddiv3-war/pom.xml
----------------------------------------------------------------------
diff --git a/juddiv3-war/pom.xml b/juddiv3-war/pom.xml
index aae2264..bbe6d3e 100644
--- a/juddiv3-war/pom.xml
+++ b/juddiv3-war/pom.xml
@@ -28,7 +28,6 @@
 		<dependency>
 			<groupId>commons-logging</groupId>
 			<artifactId>commons-logging</artifactId>
-			<version>1.1.3</version>
 		</dependency>
 		<dependency>
 			<groupId>javax.servlet</groupId>
@@ -43,10 +42,9 @@
 		</dependency>
 		    <dependency>
 	         <groupId>org.apache.commons</groupId>
-  <artifactId>commons-lang3</artifactId>
-  <version>3.2.1</version>
-			</dependency>
-			<dependency>
+             <artifactId>commons-lang3</artifactId>
+		</dependency>
+		<dependency>
 		<groupId>org.json</groupId>
 		<artifactId>json</artifactId>
 		<version>20090211</version>
@@ -442,7 +440,6 @@
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-war-plugin</artifactId>
-                        <version>2.4</version>
                         <configuration>
                             <packagingExcludes>
                                 WEB-INF/lib/hibernate*.jar,

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4cf3636..8d38abe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -170,6 +170,11 @@ under the License.
             <plugins>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-war-plugin</artifactId>
+                    <version>2.4</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-assembly-plugin</artifactId>
                     <version>2.6</version>
                 </plugin>
@@ -272,7 +277,7 @@ under the License.
                     </filesets>
                 </configuration>
             </plugin>
-            <!--<plugin>
+            <plugin>
                 <groupId>org.owasp</groupId>
                 <artifactId>dependency-check-maven</artifactId>
                 <version>1.4.5</version>
@@ -283,7 +288,7 @@ under the License.
                         </goals>
                     </execution>
                 </executions>
-            </plugin>-->
+            </plugin>
         </plugins>
     </build>
     <reporting>
@@ -374,6 +379,11 @@ under the License.
                 <version>1.1</version>
             </dependency>
             <dependency>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging</artifactId>
+                <version>1.2</version>
+            </dependency>
+            <dependency>
                 <groupId>commons-collections</groupId>
                 <artifactId>commons-collections</artifactId>
                 <version>3.2.2</version>
@@ -386,7 +396,7 @@ under the License.
             <dependency>
                 <groupId>org.apache.derby</groupId>
                 <artifactId>derby</artifactId>
-                <version>10.5.3.0_1</version>
+                <version>10.13.1.1</version>
             </dependency>
             <dependency>
                 <groupId>org.postgresql</groupId>
@@ -403,6 +413,16 @@ under the License.
                     <artifactId>httpclient</artifactId>
                     <version>4.5.2</version>
             </dependency>
+            <dependency>
+                    <groupId>commons-configuration</groupId>
+                    <artifactId>commons-configuration</artifactId>
+                    <version>1.10</version>
+            </dependency>
+            <dependency>
+                    <groupId>org.apache.commons</groupId>
+                    <artifactId>commons-lang3</artifactId>
+                    <version>3.5</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
     

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/uddi-migration-tool/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-migration-tool/pom.xml b/uddi-migration-tool/pom.xml
index 3c1df7a..6485e79 100644
--- a/uddi-migration-tool/pom.xml
+++ b/uddi-migration-tool/pom.xml
@@ -53,7 +53,7 @@
 	</dependencies>
 
 	<build>
-		<finalName>${artifactId}-${version}</finalName>
+		<finalName>${project.artifactId}-${project.version}</finalName>
 		<plugins>
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/uddi-tck-base/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-tck-base/pom.xml b/uddi-tck-base/pom.xml
index a58d569..aff7f28 100644
--- a/uddi-tck-base/pom.xml
+++ b/uddi-tck-base/pom.xml
@@ -33,7 +33,6 @@
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
-			<version>4.11</version>
 		</dependency>
                 <dependency>
                         <groupId>xmlunit</groupId>

http://git-wip-us.apache.org/repos/asf/juddi/blob/0d750d9f/uddi-tck-runner/pom.xml
----------------------------------------------------------------------
diff --git a/uddi-tck-runner/pom.xml b/uddi-tck-runner/pom.xml
index 37a2d1f..a68dc8c 100644
--- a/uddi-tck-runner/pom.xml
+++ b/uddi-tck-runner/pom.xml
@@ -63,7 +63,7 @@
 		</dependency>
   </dependencies>
   <build>
-		<finalName>${artifactId}-${version}</finalName>
+		<finalName>${project.artifactId}-${project.version}</finalName>
 		<plugins>
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org