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 answers
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in MAVEN
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- JavaFX build generating a blank gui with primary view and secondary view buttons
- Maven (Java) does not build dependencies into a compiled file
- java.lang.ClassNotFoundException: javax.servlet.jsp.tagext.TagLibraryValidator in Spring-boot jsp application
- I am trying to use h2 in-memory db from my spring boot application, my spring boot version is 3.1.10, but its not connecting to h2 properly
- BeanCreationException when deploying Spring Boot app
- How to run Parallel tests by groups using Maven and TestNG?
- Get control flow information with JaCoCo
- Failed to instantiate [com.docusign.esign.client.ApiClient]
- Gradle - Groovy vs Gradle - Kotlin vs Maven for Java Spring Boot web application project on IntelliJ
- Intelij ultimate and spring boot giving me errors
- Using Eclipse Maven project, import new version of a class from a jar file created from another Maven project
- Messing up with conflict between spring jcl and commons-logging.jar
- Run java program
- How to add a Maven project to an Ubuntu image in Docker
Related Questions in JAVA-17
- running jshell in jdk-17 java.lang.ClassFormatError accessible
- Gradle build not using jar files from local projects
- Chronicle queue version 25 and JDK17
- Whenever I build a project on android studio, OpenJDK platform binary is taking so much ram and build time is also increased
- JPA/Hibernate JpaSystemException: identifier of an instance of X was altered from Y to Z
- Process 'command 'C:\Program Files\Java\jdk-17\bin\java.exe'' finished with non-zero exit value 1
- Unable to Print Jasper Report in Docker Container with Alpine-based OpenJDK Image
- NonCollapse Image FCM using Java
- Null pointer exception in eclipselink-2.7.14
- log4j-api 2.20.0 causing : java.lang.NoClassDefFoundError: Could not initialize class org.apache.logging.log4j.util.PropertiesUtil
- No SDK on Intellij IDEA with jdk17 Installed
- java.lang.NoSuchMethodError: 'java.util.Set org.junit.platform.engine.TestDescriptor.getAncestors() JUnit5 - Java17 - IntelliJ
- Swagger UI 3 Authorization header value getting issue in spring boot 3
- Why does the InfluxDBClient.getBucketsApi().findBuckets() API method always return an empty list of buckets?
- Quarkus 3.8.x Java 17 NoClassDefFoundError: javax/xml/bind/JAXBException Dependency Conflict
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?
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)
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