We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a83fe92 commit e3d237cCopy full SHA for e3d237c
ant/docs/examples/common/included.xml
@@ -45,15 +45,16 @@
45
classpathref="classpath" />
46
47
<target name="clean">
48
- <!-- Delete the folder 'generated-sources' if it exists -->
+ <!-- Delete the folder 'generated' if it exists -->
49
<delete dir="generated"/>
50
+ <!-- Delete the compiled class files if any exist -->
51
<delete>
52
<fileset dir="." includes="**/*.class"/>
53
</delete>
54
</target>
55
56
<target name="compile" depends="clean">
- <!-- Compile the custom exporter 'HelloExporter' -->
57
+ <!-- Compile the source classes if any exist -->
58
<javac srcdir="." destdir="." classpathref="classpath"/>
59
60
0 commit comments