Update README.md

This commit is contained in:
EnZaXD 2023-08-15 22:33:01 +02:00 committed by GitHub
parent 4ffa6e3c60
commit ec9786cdf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ repositories {
}
dependencies {
implementation("net.raphimc:ViaLoader:2.2.8") // Get latest version from releases
implementation("net.raphimc:ViaLoader:2.2.9-SNAPSHOT") // Get latest version from releases
}
```
@ -33,7 +33,7 @@ dependencies {
<dependency>
<groupId>net.raphimc</groupId>
<artifactId>ViaLoader</artifactId>
<version>2.2.8</version> <!-- Get latest version from releases -->
<version>2.2.9-SNAPSHOT</version> <!-- Get latest version from releases -->
</dependency>
</dependencies>
```
@ -62,14 +62,14 @@ repositories {
```
Here is an example dependency configuration for all components:
```groovy
implementation "com.viaversion:viaversion:4.7.1-SNAPSHOT"
implementation("com.viaversion:viabackwards-common:4.7.1-SNAPSHOT") {
implementation "com.viaversion:viaversion:4.8.0-23w32a-SNAPSHOT"
implementation("com.viaversion:viabackwards-common:4.8.0-23w32a-SNAPSHOT") {
exclude group: "com.viaversion", module: "viaversion" // Exclude transitive dependency. Include manually for more control
exclude group: "io.netty", module: "netty-all" // Don't include the outdated netty version
}
implementation "com.viaversion:viarewind-core:2.0.4-SNAPSHOT"
implementation "net.raphimc:ViaLegacy:2.2.18"
implementation "net.raphimc:ViaAprilFools:2.0.8"
implementation "com.viaversion:viarewind-core:3.0.0-SNAPSHOT"
implementation "net.raphimc:ViaLegacy:2.2.19-SNAPSHOT"
implementation "net.raphimc:ViaAprilFools:2.0.9-SNAPSHOT"
implementation "net.raphimc:ViaBedrock:0.0.2-SNAPSHOT"
```