Skip to content

Commit

Permalink
Bump dependencies to Velocity 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyWatcher2019 committed Jan 2, 2024
1 parent 3329319 commit 96fc459
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
13 changes: 8 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ plugins {
}

setGroup("net.elytrium")
setVersion("1.1.3")
setVersion("1.1.4")

compileJava {
getOptions().setEncoding("UTF-8")
}

java {
setSourceCompatibility(JavaVersion.VERSION_11)
setTargetCompatibility(JavaVersion.VERSION_11)
setSourceCompatibility(JavaVersion.VERSION_17)
setTargetCompatibility(JavaVersion.VERSION_17)
}

repositories {
Expand All @@ -29,16 +29,19 @@ repositories {
setName("papermc-repo")
setUrl("https://papermc.io/repo/repository/maven-public/")
}
maven() {
setName("sonatype-snapshots-repo")
setUrl("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}

dependencies {
compileOnly("net.elytrium.limboapi:api:$limboapiVersion")

compileOnly("com.velocitypowered:velocity-api:$velocityVersion")
annotationProcessor("com.velocitypowered:velocity-api:$velocityVersion")
compileOnly("com.velocitypowered:velocity-proxy:$velocityVersion")
compileOnly("io.netty:netty-handler:$nettyVersion")
implementation("net.elytrium:serializer:$serializerVersion")
annotationProcessor("com.velocitypowered:velocity-api:$velocityVersion")
}

shadowJar {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
limboapiVersion=1.1.13
velocityVersion=3.2.0-SNAPSHOT
limboapiVersion=1.1.16
velocityVersion=3.3.0-SNAPSHOT
nettyVersion=4.1.86.Final
serializerVersion=1.0.2
serializerVersion=1.1.1
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 96fc459

Please sign in to comment.