As of the title, I am searching the range of Maven versions that ensures compatibility with Java 17, but I can't find anything on web or in Maven documentation.
Minimum and maximum version of Maven compatible with Java 17
8.1k Views Asked by Lore At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in MAVEN
- Auto reload with play2
- maven pom.xml dependencies order vs classpath/build path order
- How to ignore or fix the duplicate classes warning?
- Scala Eclipse IDE compiler giving errors until "clean" is run
- How to run multiple "mvn test"-commands from batch file?
- Not able to send email in java using SMTP,its blocked by firewall in my office.Is there any other method by which we can send mail?
- javaCV Maven project
- Logging error when executing Maven SonarQube plugin
- Gradle: Override transitive dependency by version classifier
- Why we need maven if there's javac that compiles the code?
- jar file input == null while java app is working
- JPA and web app
- Test Selector Plugin Jenkins returns No tests were executed
- Eclipse OSGI unsatisfied constraint
- GlassFish 4.0 CDI deployment failure + Apache Spark
Related Questions in JAVA-17
- When and how to perform one to 0..n mapping Stream mapMulti over flatMap
- Why is Arraylist.add() of Java 8 faster than Java 17?
- String Payload > 5Mb , Fails to send back response
- When returning a Flux of type T from a controller it returns an incomplete list
- After Spring boot upgrade to 3.0.6 cannot see trace of requests in Transaction section in Kibana
- Exception: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'kafkaTemplate' defined in class path resource
- Eclipse 2023-09, Java 17 and xhtml content assist not working
- Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: com/google/common/collect/Streams
- docker-compose showing ERROR [web internal] load metadata. Redis on Mac M2
- wierd class cast using dynamic proxy and java17 - java modules exception
- why my CLion on macos debug openjdk source the breakpoints is not step into source
- JPMS and foreign JAR files often lead to ResolutionException
- Gzip compression of a string gives different results in java11 vs java17
- Transitioning from Spring Boot 2.x to 3.x: Converting Flux<Part> to MultipartFile
- java code generated from wsdl using cxf-codegen plugin version 4.0.3
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This question cannot be answered clearly. The reason is, that Maven is organized in plugins. And the plugins are responsible for executing the corresponding tools of the JDK and other tasks. For example:
maven-compiler-plugin: executesjavac(or more specifically usesjavax.tools.JavaCompilerby default).maven-jar-plugin: assembles the.jar(it does that autonomously without using thejarcommand).It is also a common (and good) practice to have the plugin versions explicitly defined in the
pom.xml.Since Java has been quite gentle regarding backwards compatibility of artifacts so far (that strategy seems to shift a bit for the sake of security) it is able to execute Maven releases from ages ago. So there are uncountable options of version combinations (actually the root cause is that Java lacks of shipping it's own proper build tool and does not have a default repo like
nodejshas withnpm- a gap that Maven and Gradle are filling up).At the same time Maven is very gentle regarding upwards compatibility of its plugins as long as the same model version is used (which has been version 3 for a long time now) and other dependencies are compatible, most importantly Plexus.
For example you can run Maven and compile Java 17 sources using the oldest Maven 3 version available - which is 3.0, dating back to 2010. Even a
modules-info.javais compiled correctly, because Java is responsible for it - not Maven. However this version has configured central repositories usinghttpinstead ofhttps, which is rejected by the servers by now, but you could change that configuration of course.Supported features is another thing. For example the
--releaseoption added tojavacwith Java 9 is supported bymaven-compiler-pluginfrom 3.6.x and newer (specified throughmaven.compiler.release). However even with Maven 3.0 you can usemaven-compiler-plugin3.10.1, which has been released 12 years later (it stops working with 3.11.0, though).Lets take another feature example: Java 9 Modules. There are still some Maven plugins, that do not fully support it, like the
maven-shade-plugin. It can modify regular classes, but not amodules-info.class.Finally let me rephrase your questions to
3.2.3
Basically, yes
Definitely, no
The latest, 3.9.5*
No. There will never be.
* as the time of writing