You can set the property maven.compile.deprecation to "on".
This info is located at: http://maven.apache.org/reference/plugins/java/properties.html
Thanks.
I was more or less aware that this option exists but can someone please tell me what the effect will be :
- will the use of deprecated API's be considered a compile-time error when this property is set ?
- will some form of report be generated in the site documentation ?
- or what else ?
Deprecations are never considered compile errors. Setting this property will make the deprecation warnings show up during compilation.
No special reports will be generated, although you can always see
deprecated classes by clicking the "deprecated" link at the top of your javadoc.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
