Incorrect Maven setup
See original GitHub issueHello there! 👋🏻
I’m helping @n54b adding Jobs Reborn support to the Advanced Achievements plugin (see https://github.com/PyvesB/advanced-achievements/pull/874).
The API documentation in the README outlines the following:
<dependency>
<groupId>com.github.Zrips</groupId>
<artifactId>Jobs</artifactId>
<version>LATEST</version> <!-- Change the LATEST to the current version of jobs -->
<scope>provided</scope>
</dependency>
This suggests that I should be replacing LATEST
with 4.16.2
. Unfortunately, this does not work. JitPack only supports specifying versions from a release tag, commit hash or master-SNAPSHOT, as highlighted in its documentation. As you’ve got no release tags, specifying 4.16.2
or any other version simply doesn’t work, users instead have to specify a commit hash or keep on pulling new builds from master. This isn’t great.
Could you please start tagging new plugin releases or update the documentation?
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Eclipse showing "Maven Configuration Problem: Unknown"
Right Click on your Project · Go to Maven · Click on Update Project · Clean and Re-Run your Application ...
Read more >IntelliJ IDEA - Troubleshooting common Maven issues
If you encounter problems working with your Maven project you can check to see if the following solutions and workarounds can help you...
Read more >Eclipse showing “Maven Configuration Problem” - YouTube
Maven configuration problem || Eclipse showing “ Maven Configuration Problem ” | Maven configuration problem ...
Read more >How to fix Maven build issue in Eclipse? Perform ... - Crunchify
How to fix Maven build issue in Eclipse? Perform maven-clean-install to fix any Java Dependency Issue · Let's get started: · Task-1: Perform...
Read more >Release Notes – Maven 3.5.0
This problem has been fixed with MNG-6030. If you have defined a property within the .mvn/maven.config file, it was not possible to overwrite...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Now you can specify the Jobs latest version (4.16.3), using https://github.com/Zrips/Jobs/releases
Thank you! 👍🏻