Author: veithen Date: Thu Sep 20 16:57:21 2012 New Revision: 1388113 URL: http://svn.apache.org/viewvc?rev=1388113&view=rev Log: AXIS-1315: Also fixed the j2w-simplebean target.
Modified: axis/axis1/java/trunk/distribution/pom.xml axis/axis1/java/trunk/distribution/src/main/files/samples/ejb/ant-build.xml Modified: axis/axis1/java/trunk/distribution/pom.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/distribution/pom.xml?rev=1388113&r1=1388112&r2=1388113&view=diff ============================================================================== --- axis/axis1/java/trunk/distribution/pom.xml (original) +++ axis/axis1/java/trunk/distribution/pom.xml Thu Sep 20 16:57:21 2012 @@ -96,7 +96,10 @@ <property name="deploy.dir" value="${project.build.directory}/jboss/deploy"/> <mkdir dir="${deploy.dir}"/> - <ant dir="${project.build.directory}/axis-${project.version}/samples/ejb" antfile="ant-build.xml" target="j2w-nicethingsbean"/> + <ant dir="${project.build.directory}/axis-${project.version}/samples/ejb" antfile="ant-build.xml"> + <target name="j2w-simplebean"/> + <target name="j2w-nicethingsbean"/> + </ant> <ant dir="${project.build.directory}/axis-${project.version}/samples/encoding"/> <ant dir="${project.build.directory}/axis-${project.version}/samples/faults"/> Modified: axis/axis1/java/trunk/distribution/src/main/files/samples/ejb/ant-build.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/distribution/src/main/files/samples/ejb/ant-build.xml?rev=1388113&r1=1388112&r2=1388113&view=diff ============================================================================== --- axis/axis1/java/trunk/distribution/src/main/files/samples/ejb/ant-build.xml (original) +++ axis/axis1/java/trunk/distribution/src/main/files/samples/ejb/ant-build.xml Thu Sep 20 16:57:21 2012 @@ -80,7 +80,7 @@ <axis-admin xmlfile="undeploy.wsdd"/> </target> - <target name="j2w-simplebean"> + <target name="j2w-simplebean" depends="compile"> <axis-java2wsdl classname="samples.ejb.SimpleBean" classpath="${build.dir}" methods="sayHello" output="simplebean.wsdl"