From 4b212e2e089c1a58c3534b1b52977529ef66d270 Mon Sep 17 00:00:00 2001 From: Robinson Date: Mon, 2 Oct 2023 23:59:23 +0200 Subject: [PATCH] Updated build deps --- LICENSE | 12 ++++++------ build.gradle.kts | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/LICENSE b/LICENSE index 0d3ddda..1f8d863 100644 --- a/LICENSE +++ b/LICENSE @@ -19,12 +19,6 @@ The Netty Project Contributors. See source NOTICE - - SLF4J - Simple facade or abstraction for various logging frameworks - [MIT License] - https://www.slf4j.org - Copyright 2023 - QOS.ch - - Kotlin - [The Apache Software License, Version 2.0] 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 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. [The Apache Software License, Version 2.0] https://git.dorkbox.com/dorkbox/Collections diff --git a/build.gradle.kts b/build.gradle.kts index dd13ed3..c8d510b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,8 +25,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace! plugins { - id("com.dorkbox.GradleUtils") version "3.17" - id("com.dorkbox.Licensing") version "2.26" + id("com.dorkbox.GradleUtils") version "3.18" + id("com.dorkbox.Licensing") version "2.28" id("com.dorkbox.VersionUpdate") version "2.8" id("com.dorkbox.GradlePublish") version "1.20" @@ -85,19 +85,19 @@ tasks.jar.get().apply { } dependencies { - api("com.dorkbox:Collections:2.5") + api("com.dorkbox:Collections:2.6") api("com.dorkbox:NetworkUtils:2.23") api("com.dorkbox:OS:1.8") 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-transport:$nettyVer") api("io.netty:netty-transport-native-epoll:$nettyVer") api("io.netty:netty-transport-classes-kqueue:$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("ch.qos.logback:logback-classic:1.4.5")