mirror of
https://github.com/ViaVersion/ViaLoader.git
synced 2025-02-16 01:31:21 +01:00
Release 2.2.9
This commit is contained in:
parent
c6d543be31
commit
f41de68c55
20
README.md
20
README.md
@ -17,7 +17,7 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("net.raphimc:ViaLoader:2.2.9-SNAPSHOT") // Get latest version from releases
|
||||
implementation("net.raphimc:ViaLoader:2.2.9") // Get latest version from releases
|
||||
}
|
||||
```
|
||||
|
||||
@ -33,7 +33,7 @@ dependencies {
|
||||
<dependency>
|
||||
<groupId>net.raphimc</groupId>
|
||||
<artifactId>ViaLoader</artifactId>
|
||||
<version>2.2.9-SNAPSHOT</version> <!-- Get latest version from releases -->
|
||||
<version>2.2.9</version> <!-- Get latest version from releases -->
|
||||
</dependency>
|
||||
</dependencies>
|
||||
```
|
||||
@ -55,22 +55,22 @@ In case you want to include ViaBedrock, you have to add the Lenni0451 maven repo
|
||||
```groovy
|
||||
repositories {
|
||||
maven {
|
||||
name = "Lenni0451 Snapshots"
|
||||
url = "https://maven.lenni0451.net/snapshots"
|
||||
name = "Lenni0451"
|
||||
url = "https://maven.lenni0451.net/everything"
|
||||
}
|
||||
}
|
||||
```
|
||||
Here is an example dependency configuration for all components:
|
||||
```groovy
|
||||
implementation "com.viaversion:viaversion:4.8.0-23w32a-SNAPSHOT"
|
||||
implementation("com.viaversion:viabackwards-common:4.8.0-23w32a-SNAPSHOT") {
|
||||
implementation "com.viaversion:viaversion:4.8.0"
|
||||
implementation("com.viaversion:viabackwards-common:4.8.0") {
|
||||
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: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"
|
||||
implementation "com.viaversion:viarewind-common:3.0.0"
|
||||
implementation "net.raphimc:ViaLegacy:2.2.19"
|
||||
implementation "net.raphimc:ViaAprilFools:2.0.9"
|
||||
implementation "net.raphimc:ViaBedrock:0.0.3-SNAPSHOT"
|
||||
```
|
||||
|
||||
## Implementation
|
||||
|
10
build.gradle
10
build.gradle
@ -38,14 +38,14 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly "com.viaversion:viaversion:4.8.0-23w32a-SNAPSHOT"
|
||||
compileOnly("com.viaversion:viabackwards-common:4.8.0-23w32a-SNAPSHOT") {
|
||||
compileOnly "com.viaversion:viaversion:4.8.0"
|
||||
compileOnly("com.viaversion:viabackwards-common:4.8.0") {
|
||||
exclude group: "com.viaversion", module: "viaversion"
|
||||
exclude group: "io.netty", module: "netty-all"
|
||||
}
|
||||
compileOnly "com.viaversion:viarewind-core:3.0.0-SNAPSHOT"
|
||||
compileOnly "net.raphimc:ViaLegacy:2.2.19-SNAPSHOT"
|
||||
compileOnly "net.raphimc:ViaAprilFools:2.0.9-SNAPSHOT"
|
||||
compileOnly "com.viaversion:viarewind-common:3.0.0"
|
||||
compileOnly "net.raphimc:ViaLegacy:2.2.19"
|
||||
compileOnly "net.raphimc:ViaAprilFools:2.0.9"
|
||||
compileOnly "net.raphimc:ViaBedrock:0.0.3-SNAPSHOT"
|
||||
compileOnly "org.cloudburstmc.netty:netty-transport-raknet:1.0.0.CR1-SNAPSHOT"
|
||||
|
||||
|
@ -4,4 +4,4 @@ org.gradle.configureondemand=true
|
||||
|
||||
maven_group=net.raphimc
|
||||
maven_name=ViaLoader
|
||||
maven_version=2.2.9-SNAPSHOT
|
||||
maven_version=2.2.9
|
||||
|
Loading…
Reference in New Issue
Block a user