Modified: juddi/branches/juddi-3.2.x/juddi-examples/create-partition/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-examples/create-partition/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-examples/create-partition/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-examples/create-partition/pom.xml Thu May 16 03:03:28 2013 @@ -1,72 +1,71 @@ -<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.example</groupId> - <artifactId>juddi-examples</artifactId> - <version>3.1.5-SNAPSHOT</version> - <relativePath>../pom.xml</relativePath> - </parent> - <artifactId>create-partition</artifactId> - <name>jUDDI Example Create Partition</name> - <description>Demonstrates the steps taken create a UDDI partition</description> - - - <dependencies> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>uddi-ws</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>juddi-client</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - </dependencies> - - <profiles> - <profile> - <id>default</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>demo</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.partition.SimpleCreateTmodelPartition</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - -</project> - +<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.example</groupId> + <artifactId>juddi-examples</artifactId> + <version>3.1.6-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>create-partition</artifactId> + <name>jUDDI Example Create Partition</name> + <description>Demonstrates the steps taken create a UDDI partition</description> + + + <dependencies> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>uddi-ws</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>juddi-client</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + </dependencies> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>demo</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.partition.SimpleCreateTmodelPartition</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project> +
Modified: juddi/branches/juddi-3.2.x/juddi-examples/hello-world/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-examples/hello-world/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-examples/hello-world/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-examples/hello-world/pom.xml Thu May 16 03:03:28 2013 @@ -1,72 +1,71 @@ -<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.example</groupId> - <artifactId>juddi-examples</artifactId> - <version>3.1.5-SNAPSHOT</version> - <relativePath>../pom.xml</relativePath> - </parent> - <artifactId>hello-world</artifactId> - <name>jUDDI Example Hello World</name> - <description>Demonstrates the steps taken to publish a service using the jUDDI API directly</description> - - - <dependencies> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>uddi-ws</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>juddi-client</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - </dependencies> - - <profiles> - <profile> - <id>default</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>demo</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.helloworld.HelloWorld</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - -</project> - +<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.example</groupId> + <artifactId>juddi-examples</artifactId> + <version>3.1.6-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>hello-world</artifactId> + <name>jUDDI Example Hello World</name> + <description>Demonstrates the steps taken to publish a service using the jUDDI API directly</description> + + + <dependencies> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>uddi-ws</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>juddi-client</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + </dependencies> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>demo</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.helloworld.HelloWorld</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project> + Modified: juddi/branches/juddi-3.2.x/juddi-examples/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-examples/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-examples/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-examples/pom.xml Thu May 16 03:03:28 2013 @@ -16,7 +16,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.juddi.example</groupId> Modified: juddi/branches/juddi-3.2.x/juddi-examples/simple-browse/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-examples/simple-browse/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-examples/simple-browse/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-examples/simple-browse/pom.xml Thu May 16 03:03:28 2013 @@ -1,72 +1,71 @@ -<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.example</groupId> - <artifactId>juddi-examples</artifactId> - <version>3.1.5-SNAPSHOT</version> - <relativePath>../pom.xml</relativePath> - </parent> - <artifactId>simple-browse</artifactId> - <name>jUDDI Example Simple Browse</name> - <description>Demonstrates the steps taken to Browse a UDDI directory</description> - - - <dependencies> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>uddi-ws</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>juddi-client</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - </dependencies> - - <profiles> - <profile> - <id>default</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>demo</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.browse.SimpleBrowse</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - -</project> - +<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.example</groupId> + <artifactId>juddi-examples</artifactId> + <version>3.1.6-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>simple-browse</artifactId> + <name>jUDDI Example Simple Browse</name> + <description>Demonstrates the steps taken to Browse a UDDI directory</description> + + + <dependencies> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>uddi-ws</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>juddi-client</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + </dependencies> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>demo</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.browse.SimpleBrowse</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project> + Modified: juddi/branches/juddi-3.2.x/juddi-examples/simple-publish/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-examples/simple-publish/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-examples/simple-publish/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-examples/simple-publish/pom.xml Thu May 16 03:03:28 2013 @@ -1,69 +1,69 @@ -<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.example</groupId> - <artifactId>juddi-examples</artifactId> - <version>3.1.5-SNAPSHOT</version> - <relativePath>../pom.xml</relativePath> - </parent> - <artifactId>simple-publish</artifactId> - <name>jUDDI Example Simple Publish</name> - <description>Demonstrates the steps taken to publish a service using the jUDDI API directly</description> - - <dependencies> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>uddi-ws</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>juddi-client</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - </dependencies> - - <profiles> - <profile> - <id>default</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>demo</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.publish.SimplePublish</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> -</project> - +<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.example</groupId> + <artifactId>juddi-examples</artifactId> + <version>3.1.6-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>simple-publish</artifactId> + <name>jUDDI Example Simple Publish</name> + <description>Demonstrates the steps taken to publish a service using the jUDDI API directly</description> + + <dependencies> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>uddi-ws</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>juddi-client</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + </dependencies> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>demo</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.publish.SimplePublish</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> +</project> + Modified: juddi/branches/juddi-3.2.x/juddi-examples/uddi-annotations/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-examples/uddi-annotations/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-examples/uddi-annotations/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-examples/uddi-annotations/pom.xml Thu May 16 03:03:28 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>uddi-annotations</artifactId> Modified: juddi/branches/juddi-3.2.x/juddi-examples/wsdl2uddi-lifecyle/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-examples/wsdl2uddi-lifecyle/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-examples/wsdl2uddi-lifecyle/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-examples/wsdl2uddi-lifecyle/pom.xml Thu May 16 03:03:28 2013 @@ -1,220 +1,220 @@ -<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.example</groupId> - <artifactId>juddi-examples</artifactId> - <version>3.1.5-SNAPSHOT</version> - <relativePath>../pom.xml</relativePath> - </parent> - <artifactId>wsdl2uddi-lifecycle</artifactId> - <name>jUDDI Example WSDL2UDDI Deployment Lifecycle</name> - <description>Demonstrates the steps taken to publish a webservice using the WSDL file</description> - - <properties> - <cxf.version>2.3.1</cxf.version> - </properties> - <dependencies> - <dependency> - <artifactId>juddi-client</artifactId> - <groupId>org.apache.juddi</groupId> - <version>${project.parent.version}</version> - </dependency> - <dependency> - <artifactId>uddi-ws</artifactId> - <groupId>org.apache.juddi</groupId> - <version>${project.parent.version}</version> - </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - <version>2.5</version> - <scope>provided</scope> - </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-transports-http</artifactId> - <version>${cxf.version}</version> - <exclusions> - <exclusion> - <groupId>cglib</groupId> - <artifactId>cglib</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>cglib</groupId> - <artifactId>cglib-nodep</artifactId> - <version>2.1_3</version> - </dependency> - </dependencies> - <build> - <finalName>wsdl2uddi</finalName> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <configuration> - <excludes> - <exclude>*.xml</exclude> - </excludes> - </configuration> - <executions> - <execution> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>false</skip> - <includes> - <include>**/*Test.java</include> - </includes> - </configuration> - </plugin> - <!-- examples are not very useful from a maven repo, so don't put it there --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>default</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>setup</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.wsdl2uddi.Setup</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>find</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.wsdl2uddi.Find</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>deploy</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.cargo</groupId> - <artifactId>cargo-maven2-plugin</artifactId> - <version>1.3.3</version> - <configuration> - <container> - <containerId>tomcat6x</containerId> - </container> - <configuration> - <type>existing</type> - <home>${basedir}/../../juddi-tomcat-${project.parent.version}</home> - </configuration> - <deployables> - <deployable> - <groupId>org.apache.juddi.example</groupId> - <artifactId>wsdl2uddi-lifecycle</artifactId> - <type>war</type> - - </deployable> - </deployables> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>deploydev</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.cargo</groupId> - <artifactId>cargo-maven2-plugin</artifactId> - <version>1.3.3</version> - <configuration> - <container> - <containerId>tomcat6x</containerId> - </container> - <configuration> - <type>existing</type> - <home>${basedir}/../../juddi-tomcat/target/tomcat/apache-tomcat-6.0.26</home> --> - </configuration> - <deployables> - <deployable> - <groupId>org.apache.juddi.example</groupId> - <artifactId>wsdl2uddi-lifecycle</artifactId> - <type>war</type> - - </deployable> - </deployables> - </configuration> - </plugin> - </plugins> - </build> - </profile> - </profiles> - <packaging>war</packaging> -</project> - +<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.example</groupId> + <artifactId>juddi-examples</artifactId> + <version>3.1.6-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>wsdl2uddi-lifecycle</artifactId> + <name>jUDDI Example WSDL2UDDI Deployment Lifecycle</name> + <description>Demonstrates the steps taken to publish a webservice using the WSDL file</description> + + <properties> + <cxf.version>2.3.1</cxf.version> + </properties> + <dependencies> + <dependency> + <artifactId>juddi-client</artifactId> + <groupId>org.apache.juddi</groupId> + <version>${project.parent.version}</version> + </dependency> + <dependency> + <artifactId>uddi-ws</artifactId> + <groupId>org.apache.juddi</groupId> + <version>${project.parent.version}</version> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.5</version> + <scope>provided</scope> + </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-transports-http</artifactId> + <version>${cxf.version}</version> + <exclusions> + <exclusion> + <groupId>cglib</groupId> + <artifactId>cglib</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>cglib</groupId> + <artifactId>cglib-nodep</artifactId> + <version>2.1_3</version> + </dependency> + </dependencies> + <build> + <finalName>wsdl2uddi</finalName> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <configuration> + <excludes> + <exclude>*.xml</exclude> + </excludes> + </configuration> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>false</skip> + <includes> + <include>**/*Test.java</include> + </includes> + </configuration> + </plugin> + <!-- examples are not very useful from a maven repo, so don't put it there --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>setup</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.wsdl2uddi.Setup</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>find</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.wsdl2uddi.Find</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>deploy</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.cargo</groupId> + <artifactId>cargo-maven2-plugin</artifactId> + <version>1.3.3</version> + <configuration> + <container> + <containerId>tomcat6x</containerId> + </container> + <configuration> + <type>existing</type> + <home>${basedir}/../../juddi-tomcat-${project.parent.version}</home> + </configuration> + <deployables> + <deployable> + <groupId>org.apache.juddi.example</groupId> + <artifactId>wsdl2uddi-lifecycle</artifactId> + <type>war</type> + + </deployable> + </deployables> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>deploydev</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.cargo</groupId> + <artifactId>cargo-maven2-plugin</artifactId> + <version>1.3.3</version> + <configuration> + <container> + <containerId>tomcat6x</containerId> + </container> + <configuration> + <type>existing</type> + <home>${basedir}/../../juddi-tomcat/target/tomcat/apache-tomcat-6.0.26</home> --> + </configuration> + <deployables> + <deployable> + <groupId>org.apache.juddi.example</groupId> + <artifactId>wsdl2uddi-lifecycle</artifactId> + <type>war</type> + + </deployable> + </deployables> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + <packaging>war</packaging> +</project> + Modified: juddi/branches/juddi-3.2.x/juddi-examples/wsdl2uddi/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-examples/wsdl2uddi/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-examples/wsdl2uddi/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-examples/wsdl2uddi/pom.xml Thu May 16 03:03:28 2013 @@ -1,115 +1,115 @@ -<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.example</groupId> - <artifactId>juddi-examples</artifactId> - <version>3.1.5-SNAPSHOT</version> - <relativePath>../pom.xml</relativePath> - </parent> - <artifactId>wsdl2uddi</artifactId> - <name>jUDDI Example WSDL2UDDI</name> - <description>Demonstrates the steps taken to publish a webservice using the WSDL file</description> - - <dependencies> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>uddi-ws</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>juddi-client</artifactId> - <version>3.1.5-SNAPSHOT</version> - </dependency> - </dependencies> - - <profiles> - <profile> - <id>default</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>publish</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.wsdl2uddi.Publish</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>find</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.wsdl2uddi.Find</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>delete</id> - <build> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>1.1.1</version> - <executions> - <execution> - <phase>test</phase> - <goals> - <goal>java</goal> - </goals> - <configuration> - <mainClass>org.apache.juddi.example.wsdl2uddi.Delete</mainClass> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> -</project> - +<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.example</groupId> + <artifactId>juddi-examples</artifactId> + <version>3.1.6-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>wsdl2uddi</artifactId> + <name>jUDDI Example WSDL2UDDI</name> + <description>Demonstrates the steps taken to publish a webservice using the WSDL file</description> + + <dependencies> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>uddi-ws</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.juddi</groupId> + <artifactId>juddi-client</artifactId> + <version>3.1.6-SNAPSHOT</version> + </dependency> + </dependencies> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>publish</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.wsdl2uddi.Publish</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>find</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.wsdl2uddi.Find</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>delete</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.1.1</version> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>java</goal> + </goals> + <configuration> + <mainClass>org.apache.juddi.example.wsdl2uddi.Delete</mainClass> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> +</project> + Modified: juddi/branches/juddi-3.2.x/juddi-tomcat/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-tomcat/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddi-tomcat/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddi-tomcat/pom.xml Thu May 16 03:03:28 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> </parent> <artifactId>juddi-tomcat</artifactId> <name>jUDDI Tomcat Packaging</name> Modified: juddi/branches/juddi-3.2.x/juddiv3-war/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddiv3-war/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/juddiv3-war/pom.xml (original) +++ juddi/branches/juddi-3.2.x/juddiv3-war/pom.xml Thu May 16 03:03:28 2013 @@ -7,13 +7,12 @@ 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"> +<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.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> </parent> <artifactId>juddiv3-war</artifactId> <packaging>war</packaging> @@ -26,7 +25,7 @@ <dependency> <artifactId>uddi-ws</artifactId> <groupId>org.apache.juddi</groupId> - <version>3.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> </dependency> <dependency> <groupId>commons-logging</groupId> @@ -79,7 +78,7 @@ <dependency> <artifactId>juddi-core</artifactId> <groupId>org.apache.juddi</groupId> - <version>3.1.5-SNAPSHOT</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>javax.persistence</groupId> @@ -129,7 +128,7 @@ <dependency> <artifactId>juddi-core</artifactId> <groupId>org.apache.juddi</groupId> - <version>3.1.5-SNAPSHOT</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>javax.persistence</groupId> @@ -186,7 +185,7 @@ <dependency> <artifactId>juddi-core</artifactId> <groupId>org.apache.juddi</groupId> - <version>3.1.5-SNAPSHOT</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> @@ -240,7 +239,7 @@ <dependency> <artifactId>juddi-core-openjpa</artifactId> <groupId>org.apache.juddi</groupId> - <version>3.1.5-SNAPSHOT</version> + <version>${project.version}</version> <exclusions> <exclusion> <groupId>junit</groupId> @@ -324,7 +323,7 @@ <dependency> <artifactId>juddi-core-openjpa</artifactId> <groupId>org.apache.juddi</groupId> - <version>3.1.5-SNAPSHOT</version> + <version>${project.version}</version> <exclusions> <exclusion> <groupId>junit</groupId> Modified: juddi/branches/juddi-3.2.x/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/pom.xml (original) +++ juddi/branches/juddi-3.2.x/pom.xml Thu May 16 03:03:28 2013 @@ -25,7 +25,7 @@ <packaging>pom</packaging> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> <name>jUDDI_v3 Parent</name> <description>jUDDI (pronounced "Judy") is an open source Java implementation of the Universal Description, Discovery, and @@ -171,11 +171,13 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> + <version>2.1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <preparationGoals>clean install</preparationGoals> <goals>deploy</goals> <releaseProfiles>apache-release</releaseProfiles> + <tagNameFormat>juddi-@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> @@ -185,6 +187,7 @@ <extensions>true</extensions> <configuration> <classifier>${envClassifier}</classifier> + <obrRepository>target/OBRRepository.xml</obrRepository> </configuration> </plugin> <plugin> Modified: juddi/branches/juddi-3.2.x/uddi-tck-base/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/uddi-tck-base/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/uddi-tck-base/pom.xml (original) +++ juddi/branches/juddi-3.2.x/uddi-tck-base/pom.xml Thu May 16 03:03:28 2013 @@ -19,7 +19,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> </parent> <artifactId>uddi-tck-base</artifactId> <packaging>bundle</packaging> Modified: juddi/branches/juddi-3.2.x/uddi-tck/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/uddi-tck/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/uddi-tck/pom.xml (original) +++ juddi/branches/juddi-3.2.x/uddi-tck/pom.xml Thu May 16 03:03:28 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> </parent> <artifactId>uddi-tck</artifactId> <packaging>bundle</packaging> Modified: juddi/branches/juddi-3.2.x/uddi-ws/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/uddi-ws/pom.xml?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/uddi-ws/pom.xml (original) +++ juddi/branches/juddi-3.2.x/uddi-ws/pom.xml Thu May 16 03:03:28 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.1.5-SNAPSHOT</version> + <version>3.1.6-SNAPSHOT</version> </parent> <artifactId>uddi-ws</artifactId> <packaging>bundle</packaging> Modified: juddi/branches/juddi-3.2.x/uddi-ws/src/main/java/org/uddi/api_v3/Name.java URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/uddi-ws/src/main/java/org/uddi/api_v3/Name.java?rev=1483174&r1=1483173&r2=1483174&view=diff ============================================================================== --- juddi/branches/juddi-3.2.x/uddi-ws/src/main/java/org/uddi/api_v3/Name.java (original) +++ juddi/branches/juddi-3.2.x/uddi-ws/src/main/java/org/uddi/api_v3/Name.java Thu May 16 03:03:28 2013 @@ -57,6 +57,16 @@ public class Name implements Serializabl @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace") protected String lang; + public Name(String value, String lang) { + this.value = value; + this.lang = lang; + } + + public Name() { + value=null; + lang=null; + } + /** * A simple convenience constructor * @param value max length is 255 chars --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
