diff options
| author | David Williams | 2015-03-02 14:41:54 +0000 |
|---|---|---|
| committer | David Williams | 2015-03-02 14:41:54 +0000 |
| commit | 23d8f9d65825418e98b122c6b9173a6120b1301c (patch) | |
| tree | a418178b4e20e3feefae5d150160f357349d52a1 | |
| parent | f251c5111b192972180bf41587d70c832b657871 (diff) | |
| download | eclipse.platform.releng.aggregator-23d8f9d65825418e98b122c6b9173a6120b1301c.tar.gz eclipse.platform.releng.aggregator-23d8f9d65825418e98b122c6b9173a6120b1301c.tar.xz eclipse.platform.releng.aggregator-23d8f9d65825418e98b122c6b9173a6120b1301c.zip | |
Bug 460845 - Use non-deprecated form of "compilerArgs"
| -rw-r--r-- | eclipse-platform-parent/pom.xml | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml index 2b0d1ca74..7ecb90b4f 100644 --- a/eclipse-platform-parent/pom.xml +++ b/eclipse-platform-parent/pom.xml @@ -350,15 +350,17 @@ </dependency> </dependencies> <configuration> - <compilerArgument>${code.ignoredWarnings}</compilerArgument> - <compilerArguments> - <verbose /> - <inlineJSR /> - <enableJavadoc /> - <encoding>${project.build.sourceEncoding}</encoding> - <proceedOnError /> - <log>${project.build.directory}/@dot.xml</log> - </compilerArguments> + <compilerArgs> + <args>${code.ignoredWarnings}</args> + <args>-verbose</args> + <args>-inlineJSR</args> + <args>-enableJavadoc</args> + <args>-encoding</args> + <args>${project.build.sourceEncoding}</args> + <args>-proceedOnError</args> + <args>-log</args> + <args>${project.build.directory}/@dot.xml</args> + </compilerArgs> <showWarnings>true</showWarnings> <excludeResources> <exclude>**/package.html</exclude> |
