You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2012/02/22 22:06:02 UTC

svn commit: r1292503 - in /axis/axis1/java/trunk: integration/ integration/src/main/java/test/wsdl/document/ integration/src/test/java/test/wsdl/document/ test/wsdl/document/

Author: veithen
Date: Wed Feb 22 21:06:01 2012
New Revision: 1292503

URL: http://svn.apache.org/viewvc?rev=1292503&view=rev
Log:
Mavenized test.wsdl.document.

Added:
    axis/axis1/java/trunk/integration/src/main/java/test/wsdl/document/
    axis/axis1/java/trunk/integration/src/main/java/test/wsdl/document/TestService.java
      - copied unchanged from r1291001, axis/axis1/java/trunk/test/wsdl/document/TestService.java
    axis/axis1/java/trunk/integration/src/test/java/test/wsdl/document/
    axis/axis1/java/trunk/integration/src/test/java/test/wsdl/document/DocumentTestSoapBindingImpl.java
      - copied unchanged from r1291001, axis/axis1/java/trunk/test/wsdl/document/DocumentTestSoapBindingImpl.java
    axis/axis1/java/trunk/integration/src/test/java/test/wsdl/document/TestServiceServiceTestCase.java
      - copied unchanged from r1291001, axis/axis1/java/trunk/test/wsdl/document/TestServiceServiceTestCase.java
Removed:
    axis/axis1/java/trunk/test/wsdl/document/
Modified:
    axis/axis1/java/trunk/integration/pom.xml

Modified: axis/axis1/java/trunk/integration/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/integration/pom.xml?rev=1292503&r1=1292502&r2=1292503&view=diff
==============================================================================
--- axis/axis1/java/trunk/integration/pom.xml (original)
+++ axis/axis1/java/trunk/integration/pom.xml Wed Feb 22 21:06:01 2012
@@ -96,6 +96,25 @@
                             </mappings>
                         </configuration>
                     </execution>
+                    <execution>
+                        <id>document</id>
+                        <goals>
+                            <goal>generate-wsdl</goal>
+                        </goals>
+                        <phase>process-classes</phase>
+                        <configuration>
+                            <output>${project.build.directory}/work/test/wsdl/document/document.wsdl</output>
+                            <className>test.wsdl.document.TestService</className>
+                            <namespace>http://document.wsdl.test</namespace>
+                            <location>http://localhost:8080/axis/services/DocumentTest</location>
+                            <mappings>
+                                <mapping>
+                                    <package>test.wsdl.document</package>
+                                    <namespace>http://document.wsdl.test</namespace>
+                                </mapping>
+                            </mappings>
+                        </configuration>
+                    </execution>
                 </executions>
             </plugin>
             <plugin>
@@ -443,6 +462,23 @@
                             <serverSide>true</serverSide>
                         </configuration>
                     </execution>
+                    <execution>
+                        <id>document</id>
+                        <goals>
+                            <goal>wsdl2java-test</goal>
+                        </goals>
+                        <configuration>
+                            <file>${project.build.directory}/work/test/wsdl/document/document.wsdl</file>
+                            <deployScope>session</deployScope>
+                            <serverSide>true</serverSide>
+                            <mappings>
+                                <mapping>
+                                    <namespace>http://document.wsdl.test</namespace>
+                                    <package>test.wsdl.document</package>
+                                </mapping>
+                            </mappings>
+                        </configuration>
+                    </execution>
                     <!-- This tests holders for complextype Bug:10247 -->
                     <execution>
                         <id>echo</id>