-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
My Behavior
mvn clean install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true
Solution
Changing your configuration of the maven-compiler-plugin :
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<compilerArgs>
<arg>-XDignore.symbol.file</arg>
</compilerArgs>
</configuration>
</plugin>