My maven project has a compiler plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
Every time I compile using IBM Java compiler it takes a few seconds, however when I compile using Oracle Java it takes more than 10 minutes.
My company does not let me compile in Linux using IBM compiler, so I need to wait more than 10 minutes every time I need to build project on Linux.
New contributor
user25753955 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
4