Updated build deps

This commit is contained in:
Robinson 2023-10-02 23:59:23 +02:00
parent 1e3db0d1ad
commit 4b212e2e08
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
2 changed files with 11 additions and 11 deletions

12
LICENSE
View File

@ -19,12 +19,6 @@
The Netty Project The Netty Project
Contributors. See source NOTICE Contributors. See source NOTICE
- SLF4J - Simple facade or abstraction for various logging frameworks
[MIT License]
https://www.slf4j.org
Copyright 2023
QOS.ch
- Kotlin - - Kotlin -
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin https://github.com/JetBrains/kotlin
@ -33,6 +27,12 @@
Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply
See: https://github.com/JetBrains/kotlin/blob/master/license/README.md See: https://github.com/JetBrains/kotlin/blob/master/license/README.md
- SLF4J - Simple facade or abstraction for various logging frameworks
[MIT License]
https://www.slf4j.org
Copyright 2023
QOS.ch
- Collections - Collection types and utilities to enhance the default collections. - Collections - Collection types and utilities to enhance the default collections.
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Collections https://git.dorkbox.com/dorkbox/Collections

View File

@ -25,8 +25,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace! gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
plugins { plugins {
id("com.dorkbox.GradleUtils") version "3.17" id("com.dorkbox.GradleUtils") version "3.18"
id("com.dorkbox.Licensing") version "2.26" id("com.dorkbox.Licensing") version "2.28"
id("com.dorkbox.VersionUpdate") version "2.8" id("com.dorkbox.VersionUpdate") version "2.8"
id("com.dorkbox.GradlePublish") version "1.20" id("com.dorkbox.GradlePublish") version "1.20"
@ -85,19 +85,19 @@ tasks.jar.get().apply {
} }
dependencies { dependencies {
api("com.dorkbox:Collections:2.5") api("com.dorkbox:Collections:2.6")
api("com.dorkbox:NetworkUtils:2.23") api("com.dorkbox:NetworkUtils:2.23")
api("com.dorkbox:OS:1.8") api("com.dorkbox:OS:1.8")
api("com.dorkbox:Updates:1.1") api("com.dorkbox:Updates:1.1")
val nettyVer = "4.1.97.Final" val nettyVer = "4.1.99.Final"
api("io.netty:netty-buffer:$nettyVer") api("io.netty:netty-buffer:$nettyVer")
api("io.netty:netty-transport:$nettyVer") api("io.netty:netty-transport:$nettyVer")
api("io.netty:netty-transport-native-epoll:$nettyVer") api("io.netty:netty-transport-native-epoll:$nettyVer")
api("io.netty:netty-transport-classes-kqueue:$nettyVer") api("io.netty:netty-transport-classes-kqueue:$nettyVer")
api("io.netty:netty-codec:$nettyVer") api("io.netty:netty-codec:$nettyVer")
implementation("org.slf4j:slf4j-api:2.0.7") implementation("org.slf4j:slf4j-api:2.0.9")
testImplementation("junit:junit:4.13.2") testImplementation("junit:junit:4.13.2")
testImplementation("ch.qos.logback:logback-classic:1.4.5") testImplementation("ch.qos.logback:logback-classic:1.4.5")