| Release-level Ant targets: |
| javac |
Compiles java source code for all modules of the release.
|
| Module-level Ant targets: |
| javac |
Compiles java source code in the source directory.
Events intercepted: build-compile.
Events fired: javac-pre, javac-post.
|
| Configurable properties: [...] |
| antmod.javac.srcdir |
The directory with java source files. Defaults to ${antmod.module.dirs.src.java}. |
| antmod.javac.destdir |
The directory where javac compiles its classes to. Defaults to ${antmod.module.dirs.build.classes}. |
| antmod.javac.debug |
Indicates whether source should be compiled with debug information.
If set to off, -g:none will be passed on the command line for compilers
that support it (for other compilers, no command line argument will be used).
If set to true, the value of the debuglevel attribute determines the command line argument.
Defaults to true. |
| antmod.javac.deprecation |
Indicates whether source should be compiled with deprecation information. Defaults to true. |
| antmod.javac.source |
Indicates java source compatibility with specific java version. Defaults to 1.4. |