You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2005/12/02 15:00:34 UTC

svn commit: r351728 - /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/general/defaultAntBuildTemplate.xsl

Author: dims
Date: Fri Dec  2 06:00:31 2005
New Revision: 351728

URL: http://svn.apache.org/viewcvs?rev=351728&view=rev
Log:
Fix jars.ok and destfile just like the others.


Modified:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/general/defaultAntBuildTemplate.xsl

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/general/defaultAntBuildTemplate.xsl
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/general/defaultAntBuildTemplate.xsl?rev=351728&r1=351727&r2=351728&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/general/defaultAntBuildTemplate.xsl (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/general/defaultAntBuildTemplate.xsl Fri Dec  2 06:00:31 2005
@@ -91,7 +91,7 @@
             </target>
 
             <target name="compile.all" depends="pre.compile.test">
-                <xsl:attribute name="if">${jars.ok}</xsl:attribute>
+                <xsl:attribute name="if">jars.ok</xsl:attribute>
                 <javac>
                     <xsl:attribute name="destdir">${classes}</xsl:attribute>
                     <xsl:attribute name="srcdir">${src}</xsl:attribute>
@@ -105,7 +105,7 @@
             </target>
 
             <target name="echo.classpath.problem" depends="pre.compile.test">
-                <xsl:attribute name="unless">${jars.ok}</xsl:attribute>
+                <xsl:attribute name="unless">jars.ok</xsl:attribute>
                 <echo message="The class path is not set right!
                                Please make sure the following classes are in the classpath
                                1. Stax
@@ -113,10 +113,10 @@
                 "></echo>
             </target>
             <target name="jar.all" depends="compile.all,echo.classpath.problem">
-                <xsl:attribute name="if">${jars.ok}</xsl:attribute>
+                <xsl:attribute name="if">jars.ok</xsl:attribute>
                 <jar>
                     <xsl:attribute name="basedir">${classes}</xsl:attribute>
-                    <xsl:attribute name="destfile">${bin}</xsl:attribute>
+                    <xsl:attribute name="destfile">${bin}\service.jar</xsl:attribute>
                 </jar>
             </target>
         </project>