310 questions
0
votes
0
answers
41
views
Why is MapStruct Processor sometimes added as a Maven plugin instead of a dependency?
Description:
I noticed a difference between the official MapStruct documentation and various tutorials regarding how to configure the mapstruct-processor. In some tutorials, the mapstruct-processor is ...
0
votes
0
answers
15
views
How to capture logs during Xtend compilation
I’m trying to debug an issue in the Xtend compilation process and want to capture detailed logs to see:
Which classes are being compiled after the xtend:compile step.
How long each class takes to ...
0
votes
0
answers
17
views
Lombok getters not generated with maven
With the below dependency and plugins specified for Lombok and maven-compiler-plugin, it does't generate the Lombok getters and setters for @Getter and @Setter. I'm facing the problem both in Intellij ...
1
vote
0
answers
43
views
compiler:testCompile puts all transitive dependencies on module path
I added a module.info to my src/main/java and then also to my src/test/java, as per the example here. Compiling my main code is no problem. I see the compiler:compile goal adds only my direct (non-...
0
votes
1
answer
53
views
Error occurred during initialization of boot layer:Stream 'Caused by: java.lang.module.InvalidModuleDescriptorException: Package not found in module'
I have a project which I am now working on after having it laying around for some time using Java 17 and maven. During compiling the project I got the following error message:
[INFO] --- surefire:3.5....
1
vote
1
answer
194
views
Dagger 2.52 to use jakarta for the generated code
I have the following dagger 2.52 dependency in my project:
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger</artifactId>
<version>2....
0
votes
1
answer
123
views
specify java minor version in maven-compiler-plugin
from the link here
https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-release.html
it mentions
the javac executable can accept the --release option to specify
against which ...
0
votes
0
answers
35
views
Need Help Understanding Google Error Prone in Maven for Tracking Errors and Warnings
I’m a new developer, and I’m currently working on a project where Google Error Prone is being used in our Maven build process. However, I’m quite confused about how it works and how I should be using ...
0
votes
0
answers
2k
views
ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.13.0 - java.lang.NoSuchFieldError: com.sun.tools.javac.tree.JCTree
I'm encountering a fatal error while trying to compile my Maven project. The error message is as follows:
This Project is not using Spring Boot/Spring Framework which makes it different from other ...
0
votes
1
answer
261
views
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project
I am migrating existing springboot project 2.7.5 with java 8 to springboot 3.x.x with java 17.
While running mvn clean package I am getting below error:
Failed to execute goal org.apache.maven....
1
vote
1
answer
96
views
Maven executes no tests when compileSourceRoots is set
I added a directory with generated classes to my maven configuration. This causes maven to stop executing tests. Here is the part of the pom.xml which contains the compiler plugin.
<plugin>
...
0
votes
0
answers
115
views
Intellij does not pick lambok while running the application
This is what my build looks like
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-...
0
votes
0
answers
38
views
Kotlin/Java circular dependencies in maven project
So I am trying to add Kotlin into an existing Java project. I have done this before in a project built with Gradle and no issues but it seems to be a bit harder with Maven. Specifically, with circular ...
0
votes
1
answer
3k
views
maven-compiler-plugin enforce source compatibility with older JDK but compile in newer version
I am trying to keep my java project compatible with java 17 but actually compile and ships the jars with Java 21 compatibility level.
The rationale being that I am releasing a new major version and I ...
0
votes
1
answer
140
views
After updating to Java 8, encountering an error during JUnit testing that seems to be related to JiBX
To support JDK17 compilation, I updated my project's Maven compiler plugin source from 1.6 to 1.8..
Now, I can build it with JDK17, but during the JUnit test, one of the test cases is failing, and it ...
0
votes
0
answers
137
views
Use transitive maven dependency in an annotation processor inside the maven-compiler-plugin using the ServiceLoader
Top of the morning/noon/evening!
I have a multi project setup in which I use an annotation processor. This annotation processor is supposed to pickup Plugin instances (a custom interface) during the ...
1
vote
0
answers
490
views
Proguard version error: Unsupported version number [61.0] maximum 57.0, Java 13
I have a maven project which was recently bumped up to Java 17. Along with that the Proguard version was also bumped to 7.2.2 from 6.2.2. I tried building it on my system but faced the error mentioned....
1
vote
1
answer
1k
views
How can I use a specific maven version that uses a lower java version for building my project?
In my maven project is dependent on java 8 and I want maven to assume the same while building the project. But currently my installed maven is using java 21. How do I make it use java 8 for building ...
0
votes
1
answer
257
views
Unable to Resolve Dependencies for iCal4j in Maven
I'm currently facing a compilation error while working with Maven in my Java project. The issue revolves around missing dependencies related to iCal4j. Specifically, the error messages indicate that ...
0
votes
0
answers
125
views
Maven build fails with error LifecycleExecutionException and MojoExecutionException and java.lang.StackOverflowError
mvn clean install gets success with java (jdk1.8.0_201) but fails to build with java (C:\Program Files (x86)\Amazon Corretto\jdk1.8.0_392). I am trying this with Corretto8 to deploy using aws ...
1
vote
1
answer
134
views
Why mvn compile lifecycle phase is not compiling only changed java files?
I have a Java project which is using JDK 1.8 and Maven 3.9 build tool.
Here is the pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache....
1
vote
0
answers
425
views
Jenkins - failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.11.0:compile (but if I click on "compile" in IntelliJ it works)
I have an automation project on IntelliJ that I connected to a maven project in Jenkins.
When I click on "Build Now" it always failed.
This is the error I got:
console output
[ERROR] Failed ...
0
votes
1
answer
168
views
In what Maven phase/goal of the default lifecycle do my remote pom dependencies get pulled down?
I've been struggling to understand what phase of the default lifecycle actually pulls down my remote dependencies in my pom.xml to my local .m2 folder.
It's my understanding that mvn dependency:...
0
votes
1
answer
221
views
Maven build error wile building the sub modules in a project
Below are the errors we are encountering after the maven build in a project:
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project test1: ...
1
vote
2
answers
3k
views
Maven compiler plugin: Annotation processor not found
I have a Maven java project which includes a custom annotation processor:
@SupportedAnnotationTypes("com.example.Processor")
@SupportedSourceVersion(SourceVersion.RELEASE_17)
public class ...
0
votes
1
answer
64
views
Excluding NullnessChecker by directory (not package)
I am including the Checker Framework's Nullness checker in our existing Java project built with Maven.
I configured the maven-compiler-plugin, Nullness Checking seems to work fine so far.
I would like ...
1
vote
1
answer
336
views
maven-compiler-plugin could not found class in spring boot application
i had a strange issue in my spring boot application. Pls help me to found out the cause, thanks in advance!
Description
I had module A and module B in my application, module B is a set of functional ...
1
vote
0
answers
254
views
Spring-boot compilation fail on Linux but ok on windows
I have created a brand new spring-boot project with version 3.1.1 of Spring-Boot and JDK 17. The project is shared on github.
When i compile this project on windows, i have a build success. But if i ...
3
votes
3
answers
2k
views
Java 17 Maven Compiler is not allowed with --release error
I want to use google-java-format plugin in my code.For that reason I added some exports configuration to my pom inside the maven compiler plugin and after run clean install process I got error.I try ...
1
vote
1
answer
899
views
Maven keeps reverting to jdk-8 even after setting JAVA_HOME to jdk-17
When running mvn clean install, I keep running into errors of the form Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.11.0:compile (default-compile) on project test: Fatal ...
1
vote
1
answer
1k
views
Maven compiler plugin cannot resolve maven dependencies with version specified in included bill of material (bom)
We currently have this bill of material (bom) configured for all our projects (libraries and microservices)
<plugin>
<artifactId>maven-compiler-plugin</...
1
vote
0
answers
1k
views
Lombok not working with Java 11 and IntelliJ
I have a Spring Boot application with Java 11. I am using IntelliJ 2022.1.4 (Ultimate Edition). Lombok plug-in is installed and enabled in the IDE - version bundled 221.6008.13. In my pom.xml I have ...
0
votes
2
answers
1k
views
"Too many open files" exception while running Jenkins build, normal maven build is successful
I have a problem in jenkins build, when jenkins tries to build junit test I get a maven compiler error.
When I run the same code from the command line, the build succeeds.
maven-compiler-plugin/...
0
votes
0
answers
93
views
Maven life-cycle compiler exception
I'm having trouble getting my Spring MVC project to build successfully. I've been following some solutions from Stack Overflow, but none of them seem to be working for me.
I'm getting the following ...
0
votes
1
answer
50
views
Project jmeter portable after to have build with maven
I'm building a project jmeter with maven. In general I pass some argument in input.
Typically I build and run with an example command as the following:
mvn clean verify "-DNrOperators=3" -...
0
votes
0
answers
46
views
Can a project that is being built with JDK target=8 consume a library built with JDK target=11 in JRE 11?
Can a project compiled with JDK-8 consume a library built with JDK-11, while running on JRE 11?
Furthermore, can a project compiled with JDK-11, consume a library built with JDK-8, while running on ...
0
votes
0
answers
15
views
Maven annotation processor (of MapStruct) raise compilation failure [duplicate]
I am trying to work with MapStruct, according to the documentation here. It requires defining AnnotationProcessor as part of the compiler plugin. when using the annotation processor the code does not ...
1
vote
1
answer
192
views
How could `mvn package` failed with compilation failure while `mvn compile` would have passed
I have a maven spring-boot multi-module project https://github.com/JiahuaZhang/maven-spring-boot-mutli-module-question.
For the mvn clean test
[INFO] ---------------------------------------------------...
3
votes
1
answer
7k
views
"Warning: The following options were not recognized by any processor" for mapstruct
I have a spring boot application with mapstruct where I get this warning on the maven-compiler-plugin testCompile phase:
[WARNING] The following options were not recognized by any processor: '[...
0
votes
1
answer
3k
views
sonar-maven-plugin fails to recognise jdk version from "maven.compiler.release"
Behaviour of sonar-maven-plugin varies when maven-compiler-plugin is/isn't defined. I spent some time to find out the proper setting.
Create a simple Java maven project and keep the pom.xml simple.
&...
1
vote
0
answers
708
views
Force to use module-path in maven-compiler-plugin
Given this dependency tree:
[INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ demo ---
[INFO] org.eclipse.angus:demo:jar:1.0.1-SNAPSHOT
[INFO] +- org.eclipse.angus:angus-mail:jar:1.0.1-...
0
votes
1
answer
4k
views
mvn clean install not working: Compilation failure
I've been having this error since the first time I tried do run the command mvn clean install:
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[...
9
votes
2
answers
53k
views
maven-comiler-plugin: Fatal error compiling: error: release version 17 not supported
I tried to create a very simple JavaFX project with maven and use GitHub actions to build a linux package from it. This is the workflow file:
# This workflow will build a Java project with Maven
# For ...
1
vote
2
answers
1k
views
How to configure pom.xml of Maven project correctly with Selenium?
I have two different projects. Both of them have this class:
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.devtools.DevTools;
import org.openqa.selenium.devtools.v95....
4
votes
1
answer
788
views
how to get maven to run all tests but still fail build on compile error
Suppose I have a multi-module maven project. I want to run it in such a way that:
If a test fails, I still want to compile and test the next module. This sounds like a job for --fail-never, but see ...
2
votes
1
answer
748
views
How to use custom execution for testCompile goal for maven-compiler-plugin
I am using an annotationProcessor with maven-compiler-plugin in a custom profile.
<profile>
<id>error-prone-test-compile</id> ...
0
votes
0
answers
245
views
Compile .html file using maven and annotation processor
It so complicated for me, so i probably will can't to ask normally question, but i will try...So, i want to compile the .html file using command "mvn clean compile". I also have two custom ...
0
votes
0
answers
41
views
Unknown Java maven compilation error: R1549aadb
Whilst modularizing and migrating a Java 8 project to Java 17 an unknown maven error has been encountered.
The project has non-modular dependencies.
The regular classes and test classes (JUnit5) ...
0
votes
1
answer
1k
views
maven-compiler-plugin source not work as expect
I have java11 on my local, and I am using maven-compiler-plugin setting it's source/target to 1.8, in my code I am using Objects.requireNonNullElse(null, new Object()); which is not support in java 8. ...
0
votes
1
answer
218
views
How can I copy a JavaFX code that perfectly builds and runs to a remote ssh server in Visual Studio Code?
I tried to copy the java project folder in remote ssh server. Then I opened Visual Studio Code and used SSH FS extension by Kelvin Schoofs to open the remote folder. Then I opened the main .java App ...