Author: hibou Date: Thu Jan 29 13:09:55 2009 New Revision: 738851 URL: http://svn.apache.org/viewvc?rev=738851&view=rev Log: xml formatting
Modified: ant/ivy/updatesite/trunk/build.xml Modified: ant/ivy/updatesite/trunk/build.xml URL: http://svn.apache.org/viewvc/ant/ivy/updatesite/trunk/build.xml?rev=738851&r1=738850&r2=738851&view=diff ============================================================================== --- ant/ivy/updatesite/trunk/build.xml (original) +++ ant/ivy/updatesite/trunk/build.xml Thu Jan 29 13:09:55 2009 @@ -20,8 +20,8 @@ <property file="local.build.properties" /> - <property name="work.dir" value="${basedir}/work"/> - <property name="updatesite.dir" value="${basedir}/dist"/> + <property name="work.dir" value="${basedir}/work" /> + <property name="updatesite.dir" value="${basedir}/dist" /> <target name="clean"> <delete dir="$ {work.dir}" /> @@ -81,18 +81,18 @@ <delete file="${work.dir}/feature.xml" /> <copy file="ivy-feature-template/feature.xml" todir="${work.dir}"> <filterset> - <filter token="ivy.version" value="${ivy.version}"/> + <filter token="ivy.version" value="${ivy.version}" /> </filterset> </copy> <!-- package the feature --> <jar destfile="${updatesite.dir}/features/org.apache.ivy.feature_${ivy.version}.jar"> <fileset dir="ivy-feature-template"> <include name="feature.properties" /> - <include name="LICENCE"/> - <include name="NOTICE"/> + <include name="LICENCE" /> + <include name="NOTICE" /> </fileset> <fileset dir="${work.dir}"> - <include name="feature.xml"/> + <include name="feature.xml" /> </fileset> </jar> </target> @@ -132,10 +132,10 @@ <!-- launch the packing --> <java classpath="${eclipse.classpath}" classname="org.eclipse.core.launcher.Main" fork="true" failonerror="true"> <arg value="-consolelog" /> - <arg line="-application org.eclipse.update.core.siteOptimizer"/> - <arg line="-jarProcessor -verbose -processAll -pack"/> - <arg line="-outputDir ${work.dir}/updatesite/plugins"/> - <arg line="${work.dir}/updatesite/plugins"/> + <arg line="-application org.eclipse.update.core.siteOptimizer" /> + <arg line="-jarProcessor -verbose -processAll -pack" /> + <arg line="-outputDir ${work.dir}/updatesite/plugins" /> + <arg line="${work.dir}/updatesite/plugins" /> </java> <!-- put the packs back to the updatesite --> <copy todir="${updatesite.dir}"> @@ -152,9 +152,9 @@ <target name="build-digest" depends="eclipse-classpath"> <java classpath="${eclipse.classpath}" classname="org.eclipse.core.launcher.Main" fork="true" failonerror="true"> <arg value="-consolelog" /> - <arg line="-application org.eclipse.update.core.siteOptimizer"/> - <arg line="-digestBuilder -digestOutputDir=${updatesite.dir}"/> - <arg line="-siteXML=${updatesite.dir}/site.xml"/> + <arg line="-application org.eclipse.update.core.siteOptimizer" /> + <arg line="-digestBuilder -digestOutputDir=${updatesite.dir}" /> + <arg line="-siteXML=${updatesite.dir}/site.xml" /> </java> </target> @@ -178,7 +178,7 @@ </target> <target name="verify-checksum" description="Verify the checksums of the artifacts to publish"> - <checksum algorithm="MD5" fileext=".md5" format="MD5SUM" verifyproperty="checksum.md5.ok" > + <checksum algorithm="MD5" fileext=".md5" format="MD5SUM" verifyproperty="checksum.md5.ok"> <fileset dir="${updatesite.dir}"> <include name="plugins/org.apache.ivy*.jar" /> <include name="plugins/org.apache.ivy*.jar.pack.gz" /> @@ -188,11 +188,11 @@ </checksum> <fail message="MD5 Checksum verify failed !"> <condition> - <isfalse value="${checksum.md5.ok}"/> + <isfalse value="${checksum.md5.ok}" /> </condition> </fail> <echo message="MD5 Checksum verify passed successfully" /> - <checksum algorithm="SHA" fileext=".sha" format="MD5SUM" verifyproperty="checksum.sha.ok" > + <checksum algorithm="SHA" fileext=".sha" format="MD5SUM" verifyproperty="checksum.sha.ok"> <fileset dir="${updatesite.dir}"> <include name="plugins/org.apache.ivy*.jar" /> <include name="plugins/org.apache.ivy*.jar.pack.gz" /> @@ -202,7 +202,7 @@ </checksum> <fail message="SHA Checksum verify failed !"> <condition> - <isfalse value="${checksum.sha.ok}"/> + <isfalse value="${checksum.sha.ok}" /> </condition> </fail> <echo message="SHA Checksum verify passed successfully" />