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
8k Views Asked by Lore At
1
There are 1 best solutions below
Related Questions in JAVA
- Display images on Django Template Site
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Django invalid literal for int() with base 10:
- Removing URL features from tokens in NLTK
- Django Noob URL to from Root Page to sub Page
- Django Admin tables not displaying correctly
- Django with chartkick
- Django urls.py not rendering correct template
- django form errors before submit
- django admin: custom app_index with context
Related Questions in MAVEN
- Display images on Django Template Site
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Django invalid literal for int() with base 10:
- Removing URL features from tokens in NLTK
- Django Noob URL to from Root Page to sub Page
- Django Admin tables not displaying correctly
- Django with chartkick
- Django urls.py not rendering correct template
- django form errors before submit
- django admin: custom app_index with context
Related Questions in JAVA-17
- Display images on Django Template Site
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Django invalid literal for int() with base 10:
- Removing URL features from tokens in NLTK
- Django Noob URL to from Root Page to sub Page
- Django Admin tables not displaying correctly
- Django with chartkick
- Django urls.py not rendering correct template
- django form errors before submit
- django admin: custom app_index with context
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 # Hahtags
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.JavaCompiler
by default).maven-jar-plugin
: assembles the.jar
(it does that autonomously without using thejar
command).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
nodejs
has 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.java
is compiled correctly, because Java is responsible for it - not Maven. However this version has configured central repositories usinghttp
instead 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
--release
option added tojavac
with Java 9 is supported bymaven-compiler-plugin
from 3.6.x and newer (specified throughmaven.compiler.release
). However even with Maven 3.0 you can usemaven-compiler-plugin
3.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