mirror of https://github.com/OpenVidu/openvidu.git
Added configuration to fail upon warnings in maven-compile-plugin
parent
a8fe54fa6c
commit
aeac86b3c0
10
pom.xml
10
pom.xml
|
|
@ -119,6 +119,14 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>${version.compiler.plugin}</version>
|
||||
<configuration>
|
||||
<showWarnings>true</showWarnings>
|
||||
<compilerArgs>
|
||||
<arg>-Werror</arg>
|
||||
<arg>-Xlint:all</arg>
|
||||
<arg>-Xlint:-this-escape</arg>
|
||||
</compilerArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
|
@ -303,4 +311,4 @@
|
|||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
Loading…
Reference in New Issue