Top "Maven-compiler-plugin" questions

The Maven Compiler Plugin is used to compile the sources of your project.

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project mrlda: Compilation failure: Compilation failure: [ERROR] /…

java maven maven-2 maven-compiler-plugin
Maven compiler recompile all files instead modified

Even if I only change one of my classes, Maven always recompiles all of them. I use this plugin configuration: &…

maven maven-compiler-plugin
maven-compiler-plugin in parent pom

I am facing issue in setting java compiler version for the parent-child pom files. I added maven-compiler-plugin in child pom …

java eclipse maven maven-plugin maven-compiler-plugin
maven-compiler-plugin not found

I am learning Selenium and I would like to try add the maven-compiler-plugin to pom.xml and reimport maven settings. …

java maven selenium maven-compiler-plugin
Maven compilation error: cannot find symbol

Really didn't know what to put differently as a title of a question... I have 3 maven modules. First one is …

java maven-3 maven-compiler-plugin
Excluding package with maven-compiler-plugin works for one package but doesn't work for another

My project has the following package structure: src/ com.my.app.school.course -Course.java ... com.my.app.school.course.…

java maven maven-3 maven-compiler-plugin
javax.annotation classes and Java 11 JDK

I am migrating from Java 8 to Java 11 and faced the problem. I should use: maven-compiler-plugin 2.5.1 with target 1.8 (compiling WAR in …

java maven java-11 maven-compiler-plugin
Error when using javac: "javac: invalid flag: -s"

I am trying to specify another version of JDK in maven-compiler-plugin. When -target and -source parameters are set to 1.5, everything …

maven javac maven-compiler-plugin
Java 8: What is the equivalent of "UseSplitVerifier"?

I'm using Maven 3.2.3 on Mac 10.9.5 and have this for my compiler plugin ... <plugin> <groupId>org.apache.…

java-8 warnings maven-surefire-plugin maven-compiler-plugin
How do I disable the maven-compiler-plugin?

I have a maven project that uses the aspectj-compiler-plugin. I use intertype declarations so there are references to Aspect code …

maven maven-compiler-plugin