You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2007/11/02 21:52:43 UTC

svn commit: r591456 - in /webservices/juddi/trunk: axis2/ axis2/Axis2Transport.java axis2/pom.xml.bkp juddi-web-lean/pom.xml juddi-web/pom.xml juddi/pom.xml src/main/java/org/apache/juddi/proxy/Axis2Transport.java

Author: kstam
Date: Fri Nov  2 13:52:42 2007
New Revision: 591456

URL: http://svn.apache.org/viewvc?rev=591456&view=rev
Log:
JUDDI-123 rolling back axis2 changes for now

Added:
    webservices/juddi/trunk/axis2/
    webservices/juddi/trunk/axis2/Axis2Transport.java
      - copied unchanged from r591422, webservices/juddi/trunk/src/main/java/org/apache/juddi/proxy/Axis2Transport.java
    webservices/juddi/trunk/axis2/pom.xml.bkp
    webservices/juddi/trunk/juddi-web-lean/pom.xml   (with props)
    webservices/juddi/trunk/juddi-web/pom.xml
Removed:
    webservices/juddi/trunk/src/main/java/org/apache/juddi/proxy/Axis2Transport.java
Modified:
    webservices/juddi/trunk/juddi/pom.xml

Added: webservices/juddi/trunk/axis2/pom.xml.bkp
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/axis2/pom.xml.bkp?rev=591456&view=auto
==============================================================================
--- webservices/juddi/trunk/axis2/pom.xml.bkp (added)
+++ webservices/juddi/trunk/axis2/pom.xml.bkp Fri Nov  2 13:52:42 2007
@@ -0,0 +1,300 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>SNAPSHOT</version>
+  </parent>
+  
+  <name>jUDDI</name>
+  <description>jUDDI code</description>
+  <url>http://ws.apache.org/juddi/</url>
+  <artifactId>juddi</artifactId>
+  <groupId>org.apache.juddi</groupId>
+  <version>SNAPSHOT</version>
+  
+  <packaging>jar</packaging>
+   
+  <build>
+    <sourceDirectory>../src/main/java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>../src/main/resources</directory>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-install-plugin</artifactId>
+        <version>2.1</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>2.1</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.3</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-resources-plugin</artifactId>
+        <version>2.2</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-clean-plugin</artifactId>
+        <version>2.1</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <version>1.1</version>
+        <executions>
+          <execution>
+            <id>prepareLicenseFiles</id>
+            <phase>generate-resources</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <copy todir="${project.build.outputDirectory}/META-INF">
+                  <fileset dir="${basedir}">
+                    <include name="LICENSE.txt"></include>
+                    <include name="NOTICE.txt"></include>
+                  </fileset>
+                </copy>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-one-plugin</artifactId>
+        <version>1.0</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>install-maven-one-repository</goal>
+              <goal>deploy-maven-one-repository</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <remoteRepositoryId>apache</remoteRepositoryId>
+          <remoteRepositoryUrl>scpexe://people.apache.org/www/people.apache.org/repo/m1-snapshot-repository</remoteRepositoryUrl>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <version>2.0-beta-4</version>
+        <configuration>
+          <tagBase>https://svn.apache.org/repos/asf/webservices/juddi/tags/</tagBase>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.3</source>
+          <target>1.3</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+          <descriptors>
+            <descriptor>assembly/bin.xml</descriptor>
+            <descriptor>assembly/src.xml</descriptor>
+          </descriptors>
+          <tarLongFileMode>gnu</tarLongFileMode>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <version>2.0</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <attach>true</attach>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>release</id>
+      <activation>
+        <property>
+          <name>release</name>
+          <value></value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+              <attach>true</attach>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/juddi/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/juddi/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewvc/webservices/juddi/trunk</url>
+  </scm>
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+  <repositories>
+    <repository>
+      <releases>
+        <enabled>false</enabled>
+        <updatePolicy>always</updatePolicy>
+        <checksumPolicy>warn</checksumPolicy>
+      </releases>
+      <snapshots>
+        <updatePolicy>never</updatePolicy>
+        <checksumPolicy>fail</checksumPolicy>
+      </snapshots>
+      <id>apache-snapshots</id>
+      <name>Apache Maven2 SNAPSHOTS</name>
+      <url>http://people.apache.org/repo/m2-snapshot-repository/</url>
+    </repository>
+    <repository>
+      <releases>
+        <updatePolicy>always</updatePolicy>
+        <checksumPolicy>warn</checksumPolicy>
+      </releases>
+      <snapshots>
+        <updatePolicy>never</updatePolicy>
+        <checksumPolicy>warn</checksumPolicy>
+      </snapshots>
+      <id>apache-ws-snapshots2</id>
+      <name>Apache ws.zones - 2</name>
+      <url>http://ws.zones.apache.org/repository2/</url>
+    </repository>
+    <repository>
+      <releases>
+        <updatePolicy>always</updatePolicy>
+        <checksumPolicy>warn</checksumPolicy>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+        <updatePolicy>never</updatePolicy>
+        <checksumPolicy>warn</checksumPolicy>
+      </snapshots>
+      <id>maven2</id>
+      <name>Maven2 repo</name>
+      <url>http://repo1.maven.org/maven2/</url>
+    </repository>
+  </repositories>
+  <pluginRepositories>
+    <pluginRepository>
+      <releases>
+          <enabled>false</enabled>
+      </releases>
+      <snapshots>
+      	<enabled>true</enabled>
+      </snapshots>
+      <id>apache-snapshot</id>
+      <name>Apache Snapshot repository</name>
+      <url>http://people.apache.org/repo/m2-snapshot-repository/</url>
+    </pluginRepository>
+    <pluginRepository>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots />
+      <id>Codehaus Snapshots</id>
+      <url>http://snapshots.repository.codehaus.org/</url>
+    </pluginRepository>
+    <pluginRepository>
+      <id>freehep-maven</id>
+      <name>Maven FreeHEP</name>
+      <url>http://java.freehep.org/maven2/</url>
+    </pluginRepository>
+  </pluginRepositories>
+  <dependencies>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.1</version>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.13</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>wsdl4j</groupId>
+      <artifactId>wsdl4j</artifactId>
+      <version>1.6.1</version>
+    </dependency>
+    <dependency>
+      <groupId>axis</groupId>
+      <artifactId>axis</artifactId>
+      <version>${axis.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.axis2</groupId>
+      <artifactId>axis2-kernel</artifactId>
+      <version>1.1.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ws.commons.axiom</groupId>
+      <artifactId>axiom-api</artifactId>
+      <version>1.2.2</version>
+    </dependency>
+    <dependency>
+      <groupId>stax</groupId>
+      <artifactId>stax-api</artifactId>
+      <version>1.0.1</version>
+    </dependency>
+  </dependencies>
+  
+  <distributionManagement>
+    <repository>
+      <id>apache-repo</id>
+      <name>Maven Central Repository</name>
+      <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+    </repository>
+    <snapshotRepository>
+      <id>apache-snapshots</id>
+      <name>Apache Development Repository</name>
+      <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+    </snapshotRepository>
+    <site>
+      <id>website</id>
+      <url>scpexe://people.apache.org/www/ws.apache.org/juddi/</url>
+    </site>
+  </distributionManagement>
+   <properties>
+    <axis.version>1.4</axis.version>
+  </properties>
+</project>

Added: webservices/juddi/trunk/juddi-web-lean/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-web-lean/pom.xml?rev=591456&view=auto
==============================================================================
--- webservices/juddi/trunk/juddi-web-lean/pom.xml (added)
+++ webservices/juddi/trunk/juddi-web-lean/pom.xml Fri Nov  2 13:52:42 2007
@@ -0,0 +1,76 @@
+<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>
+  <groupId>org.apache.juddi</groupId>
+  <artifactId>juddi-web-lean</artifactId>
+  <packaging>war</packaging>
+  <version>SNAPSHOT</version>
+  <name>juddi-web-lean Maven Webapp</name>
+  <url>http://maven.apache.org</url>
+  <dependencies>
+    <dependency>
+      <artifactId>juddi</artifactId>
+      <groupId>org.apache.juddi</groupId>
+      <version>SNAPSHOT</version> 
+      <!--  
+      <exclusions>
+        <exclusion>
+           <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+        </exclusion>
+        <exclusion>
+         <groupId>commons-discovery</groupId>
+      <artifactId>commons-discovery</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+        </exclusion>
+        <exclusion>
+           <groupId>wsdl4j</groupId>
+      <artifactId>wsdl4j</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.apache.axis2</groupId>
+          <artifactId>axis2-kernel</artifactId>
+        </exclusion>
+         <exclusion>
+         <groupId>org.apache.ws.commons.axiom</groupId>
+      <artifactId>axiom-api</artifactId>
+        </exclusion>
+         <exclusion>
+          <groupId>stax</groupId>
+      <artifactId>stax-api</artifactId>
+        </exclusion>
+      </exclusions>
+       -->
+    </dependency> 
+   
+  </dependencies>
+  <build>
+  <plugins>
+	<plugin>
+		<groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+		  <webResources>
+            <resource>
+              <!-- this is relative to the pom.xml directory -->
+              <directory>juddi-web/src/main/webapp</directory>
+               <excludes>
+                <exclude>**/lib/</exclude>
+                <exclude>**/axis2.xml</exclude>
+		        <exclude>**/happyjuddi.jsp</exclude>
+		        <exclude>**/juddi.properties</exclude>
+               </excludes>
+            </resource>
+          </webResources>
+        </configuration>
+	</plugin>
+	
+	</plugins>
+    <finalName>juddi</finalName>
+   </build>
+
+</project>

Propchange: webservices/juddi/trunk/juddi-web-lean/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: webservices/juddi/trunk/juddi-web-lean/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: webservices/juddi/trunk/juddi-web/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-web/pom.xml?rev=591456&view=auto
==============================================================================
--- webservices/juddi/trunk/juddi-web/pom.xml (added)
+++ webservices/juddi/trunk/juddi-web/pom.xml Fri Nov  2 13:52:42 2007
@@ -0,0 +1,262 @@
+<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>
+  <groupId>org.apache.juddi</groupId>
+  <artifactId>juddi-web</artifactId>
+  <packaging>war</packaging>
+  <version>SNAPSHOT</version>
+  <name>juddi-web Maven Webapp</name>
+  <url>http://maven.apache.org</url>
+  <dependencies>
+    <!-- 
+     <dependency>
+      <artifactId>XmlSchema</artifactId>
+      <groupId>org.apache.ws.commons</groupId>
+      <version>1.1</version>
+      <scope>runtime</scope> 
+     </dependency>
+     <dependency>
+      <artifactId>activation</artifactId>
+      <groupId>javax.activation</groupId>
+      <version>1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <artifactId>annogen</artifactId>
+      <groupId>annogen</groupId>
+      <version>0.1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axiom-api</artifactId>
+      <groupId>ws-commons</groupId>
+      <version>1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axiom-dom</artifactId>
+      <groupId>ws-commons</groupId>
+      <version>1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axiom-impl</artifactId>
+      <groupId>ws-commons</groupId>
+      <version>1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-adb</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-adb-codegen</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-codegen</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-java2wsdl</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-jaxbri</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-jibx</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-kernel</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-saaj</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-soapmonitor</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-spring</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>axis2-xmlbeans</artifactId>
+      <groupId>org.apache.axis2</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>backport-util-concurrent</artifactId>
+      <groupId>backport-util-concurrent</groupId>
+      <version>2.2</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <artifactId>commons-codec</artifactId>
+      <groupId>commons-codec</groupId>
+      <version>1.3</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <artifactId>commons-discovery</artifactId>
+      <groupId>commons-discovery</groupId>
+      <version>0.4</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>commons-fileupload</artifactId>
+      <groupId>commons-fileupload</groupId>
+      <version>1.1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>commons-httpclient</artifactId>
+      <groupId>commons-httpclient</groupId>
+      <version>3.0.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>commons-io</artifactId>
+      <groupId>commons-io</groupId>
+      <version>1.2</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>commons-logging</artifactId>
+      <groupId>commons-logging</groupId>
+      <version>1.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>jakarta-httpcore</artifactId>
+      <groupId>org.apache.httpcomponents</groupId>
+      <version>4.0-alpha2</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>jaxb-api</artifactId>
+      <groupId>javax.xml.bind</groupId>
+      <version>2.0</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>jaxb-impl</artifactId>
+      <groupId>com.sun.xml.bind</groupId>
+      <version>2.0.2</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>jaxb-xjc</artifactId>
+      <groupId>com.sun.xml.bind</groupId>
+      <version>2.0.2</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>jaxen</artifactId>
+      <groupId>jaxen</groupId>
+      <version>1.1-beta-10</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>jibx-run</artifactId>
+      <groupId>org.jibx</groupId>
+      <version>1.0.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>log4j</artifactId>
+      <groupId>log4j</groupId>
+      <version>1.2.14</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>mail</artifactId>
+      <groupId>javax.mail</groupId>
+      <version>1.4</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>neethi</artifactId>
+      <groupId>ws-commons</groupId>
+      <version>1.0.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>stax-api</artifactId>
+      <groupId>stax</groupId>
+      <version>1.0.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>wsdl4j</artifactId>
+      <groupId>wsdl4j</groupId>
+      <version>1.6.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>wstx-asl</artifactId>
+      <groupId>woodstox</groupId>
+      <version>3.2.0</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>xalan</artifactId>
+      <groupId>xalan</groupId>
+      <version>2.7.0</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>xbean</artifactId>
+      <groupId>xmlbeans</groupId>
+      <version>2.2.0</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <artifactId>xercesImpl</artifactId>
+      <groupId>xerces</groupId>
+      <version>2.8.1</version>
+      <scope>runtime</scope>
+    </dependency>
+   <dependency>
+      <artifactId>xml-apis</artifactId>
+      <groupId>xml-apis</groupId>
+      <version>2.0.2</version>
+      <scope>runtime</scope>
+    </dependency>
+     -->
+    <dependency>
+      <artifactId>juddi</artifactId>
+      <groupId>org.apache.juddi</groupId>
+      <version>SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <finalName>juddi</finalName>
+  </build>
+</project>

Modified: webservices/juddi/trunk/juddi/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi/pom.xml?rev=591456&r1=591455&r2=591456&view=diff
==============================================================================
--- webservices/juddi/trunk/juddi/pom.xml (original)
+++ webservices/juddi/trunk/juddi/pom.xml Fri Nov  2 13:52:42 2007
@@ -250,31 +250,11 @@
       <version>4.1</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>wsdl4j</groupId>
-      <artifactId>wsdl4j</artifactId>
-      <version>1.6.1</version>
-    </dependency>
+   
     <dependency>
       <groupId>axis</groupId>
       <artifactId>axis</artifactId>
       <version>${axis.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.axis2</groupId>
-      <artifactId>axis2-kernel</artifactId>
-      <version>1.1.1</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.ws.commons.axiom</groupId>
-      <artifactId>axiom-api</artifactId>
-      <version>1.2.2</version>
-    </dependency>
-    <dependency>
-      <groupId>stax</groupId>
-      <artifactId>stax-api</artifactId>
-      <version>1.0.1</version>
     </dependency>
   </dependencies>
   



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