You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2006/02/01 00:49:08 UTC

svn commit: r373945 - /webservices/axis2/trunk/java/build.xml

Author: dims
Date: Tue Jan 31 15:49:06 2006
New Revision: 373945

URL: http://svn.apache.org/viewcvs?rev=373945&view=rev
Log:
dont' call create-lib unless necessary

Modified:
    webservices/axis2/trunk/java/build.xml

Modified: webservices/axis2/trunk/java/build.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/build.xml?rev=373945&r1=373944&r2=373945&view=diff
==============================================================================
--- webservices/axis2/trunk/java/build.xml (original)
+++ webservices/axis2/trunk/java/build.xml Tue Jan 31 15:49:06 2006
@@ -49,6 +49,7 @@
     <property name="artifact.title" value="${project.id}-${project.currentVersion}" />
     <property name="target.jar" location="${target.dir}/${artifact.title}.jar"/>
     <property name="target.pom" location="${target.dir}/${artifact.title}.pom"/>
+    <available file="${basedir}/target/lib/axis-wsdl4j-1.2.jar" property="jars.present"/>
 
   </target>
 
@@ -72,7 +73,7 @@
     </maven>
   </target>
 
-  <target name="create-lib" depends="init"
+  <target name="create-lib" unless="jars.present" depends="init"
       description="creates the libraries">
     <maven>
       <arg value="create-lib" />