File tree 2 files changed +5
-9
lines changed
2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ The mod (and this API) use the Gradle build system.
20
20
To get the library, first define a repository:
21
21
``` groovy
22
22
repositories {
23
- maven {
24
- url "https://repo.5zigreborn.eu/repository /maven-releases"
23
+ maven {
24
+ url "https://dl.bintray.com/5zig-reborn /maven"
25
25
}
26
26
}
27
27
```
28
28
Then, add the library as a dependency:
29
29
``` groovy
30
30
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 '
32
32
}
33
33
```
34
34
You will also need to add an ` authlib ` jar to your classpath. You can find it in your
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java'
2
2
apply plugin : ' maven-publish'
3
3
4
- version = " 3.12.6 "
4
+ version = " 3.13.0 "
5
5
6
6
repositories {
7
7
mavenCentral()
@@ -29,11 +29,7 @@ publishing {
29
29
username nexusUsername
30
30
password nexusPassword
31
31
}
32
- if (project. version. endsWith(" -SNAPSHOT" )) {
33
- url " ${ nexusUrl} /repository/maven-snapshots"
34
- } else {
35
- url " ${ nexusUrl} /repository/maven-releases"
36
- }
32
+ url " ${ nexusUrl} "
37
33
}
38
34
}
39
35
}
You can’t perform that action at this time.
0 commit comments