I am deploying a library through GitHub and I am using JitPack to use the library in a Maven dependency.
In GitHub, I entered "2.0" as the tag.
When I lookup my library on jitpack.io, In indeed see version 2.0 listed. According to JitPack, I need to add the following dependency to use my library:
<dependency>
<groupId>com.github.mwbouwkamp</groupId>
<artifactId>numbers-lib</artifactId>
<version>Tag</version>
</dependency>
However, when I add this to my pom-file, "Tag" is in red and it says that the dependency is not found. Same happens when I use "2.0" as a version (instead of "Tag").
Anyone knows where I go wrong?
FYI: I did try "Update Maven Indices" and I also tried a re-import.