Skip to content

Commit abdfad1

Browse files
committed
Move artifacts to Bintray
1 parent 449a14a commit abdfad1

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ The mod (and this API) use the Gradle build system.
2020
To get the library, first define a repository:
2121
```groovy
2222
repositories {
23-
maven {
24-
url "https://repo.5zigreborn.eu/repository/maven-releases"
23+
maven {
24+
url "https://dl.bintray.com/5zig-reborn/maven"
2525
}
2626
}
2727
```
2828
Then, add the library as a dependency:
2929
```groovy
3030
dependencies {
31-
compile group: 'eu.5zigreborn', name: 'plugin-api', version: '3.12.6'
31+
compile group: 'eu.5zigreborn', name: 'plugin-api', version: '3.13.0'
3232
}
3333
```
3434
You will also need to add an `authlib` jar to your classpath. You can find it in your

build.gradle

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'java'
22
apply plugin: 'maven-publish'
33

4-
version = "3.12.6"
4+
version = "3.13.0"
55

66
repositories {
77
mavenCentral()
@@ -29,11 +29,7 @@ publishing {
2929
username nexusUsername
3030
password nexusPassword
3131
}
32-
if (project.version.endsWith("-SNAPSHOT")) {
33-
url "${nexusUrl}/repository/maven-snapshots"
34-
} else {
35-
url "${nexusUrl}/repository/maven-releases"
36-
}
32+
url "${nexusUrl}"
3733
}
3834
}
3935
}

0 commit comments

Comments
 (0)