Updated build deps

master
Robinson 2023-01-05 21:52:36 +01:00
parent d6f20d103d
commit 9b2c2366d9
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
1 changed files with 13 additions and 10 deletions

View File

@ -24,12 +24,12 @@ import java.time.Instant
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
plugins {
id("com.dorkbox.GradleUtils") version "2.16"
id("com.dorkbox.Licensing") version "2.9.2"
id("com.dorkbox.VersionUpdate") version "2.4"
id("com.dorkbox.GradlePublish") version "1.11"
id("com.dorkbox.GradleUtils") version "3.5"
id("com.dorkbox.Licensing") version "2.17"
id("com.dorkbox.VersionUpdate") version "2.5"
id("com.dorkbox.GradlePublish") version "1.13"
kotlin("jvm") version "1.5.21"
kotlin("jvm") version "1.6.0"
}
object Extras {
@ -116,13 +116,16 @@ dependencies {
implementation("com.dorkbox:Updates:1.1")
// listed as compileOnly, since we will be using netty bytebuf utils if we ALREADY are using netty byte buffs. **We don't want a hard dependency.**
compileOnly("io.netty:netty-buffer:4.1.66.Final")
compileOnly("com.esotericsoftware:kryo:5.2.0")
compileOnly("io.netty:netty-buffer:4.1.86.Final")
compileOnly("com.esotericsoftware:kryo:5.4.0")
testImplementation("io.netty:netty-buffer:4.1.66.Final")
testImplementation("com.esotericsoftware:kryo:5.2.0")
testImplementation("junit:junit:4.13")
testImplementation("io.netty:netty-buffer:4.1.86.Final")
testImplementation("com.esotericsoftware:kryo:5.4.0")
testImplementation("junit:junit:4.13.2")
}
repositories {
mavenCentral()
}
publishToSonatype {