Skip to content

Commit

Permalink
tab to space changes
Browse files Browse the repository at this point in the history
  • Loading branch information
maurcarvalho committed Feb 22, 2016
1 parent 5ed113f commit 15fc6e6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/site/apt/example-weaving-ant.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ Weaving Java Binaries using Ant build strategy

<!--Responsible to weave/merge the javac binary code result with aj binaries -->
<target name="weave-binary">
<iajc showWeaveInfo="true" inpath="${targetdir}" destDir="${targetdir}" fork="true">
<aspectpath refid="aspect.path"/>
<classpath refid="ajclasspath" />
</iajc>
<iajc showWeaveInfo="true" inpath="${targetdir}" destDir="${targetdir}" fork="true">
<aspectpath refid="aspect.path"/>
<classpath refid="ajclasspath" />
</iajc>
</target>
+--

Expand All @@ -79,13 +79,13 @@ Weaving Java Binaries using Ant build strategy
+--
<!-- here comes your javac strategy -->
<target name="compile">
<echo message="Compile using Java version ${ant.java.version}."/>
<javac includeantruntime="false" encoding="UTF-8" srcdir="${sourcedir}" destdir="${targetdir}" classpathref="classpath" />
<echo message="Compile using Java version ${ant.java.version}."/>
<javac includeantruntime="false" encoding="UTF-8" srcdir="${sourcedir}" destdir="${targetdir}" classpathref="classpath" />
</target>

<!-- This is the final target process that you do before deploy your app / prepare your project package. -->
<target name="package" depends="clean, compile, weave-binary">
<!-- here comes your package project behavior -->
<!-- here comes your package project behavior -->
</target>
+--

Expand Down

0 comments on commit 15fc6e6

Please sign in to comment.