-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could not find com.github.aki-ks:kaysub-commons:0.1-SNAPSHOT. #1
Comments
SolutionActually it looks like I was able to find the right syntax by inspecting the Here is the correct configuration for anyone who comes across this in the future: repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.aki-ks:kaysub-commons:master-SNAPSHOT'
implementation('com.github.aki-ks:NyaaSi-API:master-SNAPSHOT') {
exclude group: 'de.kaysubs', module: 'kaysub-commons'
}
} |
Alternate SolutionInstall this library into local .m2 repository:
Then include it in repositories {
mavenLocal()
}
dependencies {
implementation 'de.kaysubs:nyaasi-api:0.1-SNAPSHOT'
} |
I get Missing artifact com.github.aki-ks:kaysub-commons:jar:master-SNAPSHOT in my pom => |
@p4cif1c did you add the jitpack.io repository to your pom.xml? Example below: <repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories> |
Its good now I added the repo and change the version to master. thanks |
I would very much like to use this library but I keep running into the following error in Gradle when trying to use this library from Java:
It appears it's stemming from here:
https://github.com/aki-ks/NyaaSi-API/blob/master/build.sbt#L14-L16
I have tried excluding the group here and including the dependency manually:
But that does not work either.
The
.pom
file for this library shows1.0-SNAPSHOT
for kaysub-commons:https://jitpack.io/com/github/aki-ks/NyaaSi-API/master/NyaaSi-API-master.pom
Is it possible to create a tag on kaysub-commons and include that version in the kaysub-commons dependency in this repo? Or to specify
master
as the version forkaysub-commons
in this repo?Thanks in advance for the help.
The text was updated successfully, but these errors were encountered: