Willem Jiang created SCB-982:
--------------------------------
Summary: Show the warning message in maven compile plugin
Key: SCB-982
URL: https://issues.apache.org/jira/browse/SCB-982
Project: Apache ServiceComb
Issue Type: Improvement
Components: Java-Chassis, Saga
Reporter: Willem Jiang
It could help us find more waring message durning the developing time.
{code}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Werror</arg>
<arg>-Xlint:all</arg>
</compilerArgs>
</configuration>
</plugin>
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)