Skip to content

Commit c8bc56d

Browse files
authored
Update README.md
1 parent dd94bda commit c8bc56d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ There is a separate Ant task for applying JavaFlow instrumentation at build-time
8383
It's possibe to instrument compiled Java classes as below:
8484
```xml
8585
<target name="instrument-classes" description="JavaFlow Instrumentation" depends="compile">
86-
<taskdef name="javaflow" classname="org.apache.commons.javaflow.tools.ant.ContinuableClassesInstrumentationTask"
86+
<taskdef name="javaflow"
87+
classname="org.apache.commons.javaflow.tools.ant.ContinuableClassesInstrumentationTask"
8788
classpathref="ant-lib-classpath"/>
8889
<echo message="JavaFlow instrumentation of compiled classes in ${classes.dir}" />
8990
<javaflow srcdir="${classes.dir}" destdir="${i-classes.dir}" classpathref="classpath"/>
@@ -92,7 +93,8 @@ It's possibe to instrument compiled Java classes as below:
9293
... as well as re-write packaged JAR file:
9394
```xml
9495
<target name="instrument-jar" description="JavaFlow Instrumentation" depends="jar">
95-
<taskdef name="javaflow" classname="org.apache.commons.javaflow.tools.ant.ContinuableClassesInstrumentationTask"
96+
<taskdef name="javaflow"
97+
classname="org.apache.commons.javaflow.tools.ant.ContinuableClassesInstrumentationTask"
9698
classpathref="ant-lib-classpath"/>
9799
<echo message="JavaFlow instrumentation of compiled classes in ${jar.dir}/${ant.project.name}.jar" />
98100
<javaflow srcdir="${jar.dir}" destdir="${i-jar.dir}" classpathref="classpath"/>

0 commit comments

Comments
 (0)