Use new paper repo url and bump version to 1.19 (#775)

This commit is contained in:
mooz 2023-03-02 07:47:38 +01:00 committed by GitHub
parent 26e445a021
commit 8af7420740
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ Waterfall requires **Java 8** or above.
```xml
<repository>
<id>papermc</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
```
* Artifact information:
@ -40,7 +40,7 @@ Waterfall requires **Java 8** or above.
<dependency>
<groupId>io.github.waterfallmc</groupId>
<artifactId>waterfall-api</artifactId>
<version>1.18-R0.1-SNAPSHOT</version>
<version>1.19-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
```
@ -51,14 +51,14 @@ Waterfall requires **Java 8** or above.
```groovy
repositories {
maven {
url 'https://papermc.io/repo/repository/maven-public/'
url 'https://repo.papermc.io/repository/maven-public/'
}
}
```
* Artifact:
```groovy
dependencies {
compileOnly 'io.github.waterfallmc:waterfall-api:1.18-R0.1-SNAPSHOT'
compileOnly 'io.github.waterfallmc:waterfall-api:1.19-R0.1-SNAPSHOT'
}
```