Problem: The project uses or overrides a deprecated API.
[WARNING] Note: D:\workspaces\Test\LuckyNumberWebService\src\test\java\com\blogspot\adaprognotebook\client\TestLuckyServiceClient.java uses or overrides a deprecated API. [WARNING] Note: Recompile with -Xlint:deprecation for details.Cause: The project uses or overrides a deprecated API.
Solution: Set "-Xlint:deprecation" as compiler argument during compilation.
pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArgument>-Xlint:deprecation</compilerArgument>
</configuration>
</plugin>
No comments:
Post a Comment