Author: nextgens
Date: 2007-07-03 11:13:20 +0000 (Tue, 03 Jul 2007)
New Revision: 13881

Modified:
   trunk/plugins/build.xml
Log:
indent

Modified: trunk/plugins/build.xml
===================================================================
--- trunk/plugins/build.xml     2007-07-02 18:44:23 UTC (rev 13880)
+++ trunk/plugins/build.xml     2007-07-03 11:13:20 UTC (rev 13881)
@@ -8,43 +8,43 @@
        <property name="build" location="build/"/>
        <property name="dist" location="dist/"/>

-<target name="mkdir">
-    <mkdir dir="${build}"/>
-    <mkdir dir="${dist}"/>
-    <echo message="Using ${freenet-cvs-snapshot.location} as 
freenet-cvs-snapshot.jar"/>
-    <echo message="Using ${freenet-ext.location} as freenet-ext.jar"/>
-</target>
+       <target name="mkdir">
+               <mkdir dir="${build}"/>
+               <mkdir dir="${dist}"/>
+               <echo message="Using ${freenet-cvs-snapshot.location} as 
freenet-cvs-snapshot.jar"/>
+               <echo message="Using ${freenet-ext.location} as 
freenet-ext.jar"/>
+       </target>

-    <!-- ================================================== -->
-  <target name="compile" depends="mkdir" >
-    <!-- Create the time stamp -->
-    <tstamp/>
-    <!-- Create the build directory structure used by compile -->
+       <!-- ================================================== -->
+       <target name="compile" depends="mkdir" >
+               <!-- Create the time stamp -->
+               <tstamp/>
+               <!-- Create the build directory structure used by compile -->

-<!-- FIXME: remove the debug and replace with optimize -->
-    <javac srcdir="${what}/" destdir="${build}" debug="on" optimize="on" 
source="${source-version}">
-           <classpath>
-               <pathelement location="${freenet-ext.location}"/>
-               <pathelement location="${freenet-cvs-snapshot.location}"/>
-           </classpath>
-           <include name="**/*.java"/>
-    </javac>
-  </target>
+               <!-- FIXME: remove the debug and replace with optimize -->
+               <javac srcdir="${what}/" destdir="${build}" debug="on" 
optimize="on" source="${source-version}">
+                       <classpath>
+                               <pathelement 
location="${freenet-ext.location}"/>
+                               <pathelement 
location="${freenet-cvs-snapshot.location}"/>
+                       </classpath>
+                       <include name="**/*.java"/>
+               </javac>
+       </target>


-    <!-- ================================================== -->
-  <target name="dist" depends="clean,compile"
-      description="generate the distribution" >
-    <jar jarfile="${dist}/${what}.jar" basedir="${build}">
-       <manifest>
-               <attribute name="Plugin-Main-Class" 
value="plugins.${what}.${what}"/>
-       </manifest>
-    </jar>
-  </target>
+       <!-- ================================================== -->
+       <target name="dist" depends="clean,compile"
+               description="generate the distribution" >
+               <jar jarfile="${dist}/${what}.jar" basedir="${build}">
+                       <manifest>
+                               <attribute name="Plugin-Main-Class" 
value="plugins.${what}.${what}"/>
+                       </manifest>
+               </jar>
+       </target>

-    <!-- ================================================== -->
-    <target name="clean" description="Delete class files and docs dir.">
-        <delete dir="${build}"/>
-        <delete dir="${dist}"/>
-    </target>
+       <!-- ================================================== -->
+       <target name="clean" description="Delete class files and docs dir.">
+               <delete dir="${build}"/>
+               <delete dir="${dist}"/>
+       </target>
 </project>


Reply via email to