Modified: axis/axis2/java/core/trunk/modules/kernel/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/pom.xml?rev=1001486&r1=1001485&r2=1001486&view=diff ============================================================================== --- axis/axis2/java/core/trunk/modules/kernel/pom.xml (original) +++ axis/axis2/java/core/trunk/modules/kernel/pom.xml Sun Sep 26 17:58:15 2010 @@ -191,20 +191,14 @@ <configuration> <tasks unless="maven.test.skip"> <copy todir="${project.build.directory}/test-resources"> - <fileset dir="${basedir}/test-resources"/> + <fileset dir="${basedir}/test-resources" /> </copy> - <ant antfile="build.xml" inheritall="true" inheritrefs="true" - dir="test-resources/deployment/service2"/> - <ant antfile="build.xml" inheritall="true" inheritrefs="true" - dir="test-resources/deployment/echo"/> - <ant antfile="build.xml" inheritall="true" inheritrefs="true" - dir="test-resources/deployment/invalidservice"/> - <ant antfile="build.xml" inheritall="true" inheritrefs="true" - dir="test-resources/deployment/module1"/> - <ant antfile="build.xml" inheritall="true" inheritrefs="true" - dir="test-resources/deployment/serviceModule"/> - <copy file="${basedir}/test-resources/deployment/axis2.xml" - tofile="${basedir}/target/test-resources/deployment/axis2.xml"/> + <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/service2" /> + <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/echo" /> + <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/invalidservice" /> + <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/module1" /> + <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/serviceModule" /> + <copy file="${basedir}/test-resources/deployment/axis2.xml" tofile="${basedir}/target/test-resources/deployment/axis2.xml" /> </tasks> </configuration> <goals>
Modified: axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml?rev=1001486&r1=1001485&r2=1001486&view=diff ============================================================================== --- axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml (original) +++ axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml Sun Sep 26 17:58:15 2010 @@ -19,8 +19,7 @@ ~ 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.axis2</groupId> Modified: axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml?rev=1001486&r1=1001485&r2=1001486&view=diff ============================================================================== --- axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml (original) +++ axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml Sun Sep 26 17:58:15 2010 @@ -125,38 +125,27 @@ <tasks unless="maven.test.skip"> <taskdef name="java2wsdl" classname="org.apache.axis2.tool.ant.Java2WSDLTask"> <classpath> - <path refid="maven.test.classpath"/> + <path refid="maven.test.classpath" /> </classpath> </taskdef> - <echo message="Generating extraclasses*.wsdl"/> + <echo message="Generating extraclasses*.wsdl" /> - <java2wsdl className="test.Service" - outputLocation="${project.build.directory}/java2wsdl" - outputFileName="extraclasses1.wsdl"> - <extraclass name="test.ExtraClass1"/> - <extraclass name="test.ExtraClass2"/> + <java2wsdl className="test.Service" outputLocation="${project.build.directory}/java2wsdl" outputFileName="extraclasses1.wsdl"> + <extraclass name="test.ExtraClass1" /> + <extraclass name="test.ExtraClass2" /> </java2wsdl> - <java2wsdl className="test.Service" - outputLocation="${project.build.directory}/java2wsdl" - outputFileName="extraclasses2.wsdl" - extraClasses="test.ExtraClass1,test.ExtraClass2"/> - - <java2wsdl className="test.Service" - outputLocation="${project.build.directory}/java2wsdl" - outputFileName="extraclasses3.wsdl" - extraClasses="test.ExtraClass1"> - <extraclass name="test.ExtraClass2"/> + <java2wsdl className="test.Service" outputLocation="${project.build.directory}/java2wsdl" outputFileName="extraclasses2.wsdl" extraClasses="test.ExtraClass1,test.ExtraClass2" /> + + <java2wsdl className="test.Service" outputLocation="${project.build.directory}/java2wsdl" outputFileName="extraclasses3.wsdl" extraClasses="test.ExtraClass1"> + <extraclass name="test.ExtraClass2" /> </java2wsdl> - <echo message="Generating mappings.wsdl"/> + <echo message="Generating mappings.wsdl" /> - <java2wsdl className="test.Service" - outputLocation="${project.build.directory}/java2wsdl" - outputFileName="mappings.wsdl" - schemaTargetNamespace="http://www.example.org/schema/test-service"> - <mapping package="test" namespace="http://www.example.org/schema/test"/> + <java2wsdl className="test.Service" outputLocation="${project.build.directory}/java2wsdl" outputFileName="mappings.wsdl" schemaTargetNamespace="http://www.example.org/schema/test-service"> + <mapping package="test" namespace="http://www.example.org/schema/test" /> </java2wsdl> </tasks> </configuration>