updated build deps + dependencies

This commit is contained in:
Robinson 2023-02-07 14:32:19 +01:00
parent 858927509d
commit bf925c10d3
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
2 changed files with 15 additions and 21 deletions

22
LICENSE
View File

@ -100,7 +100,7 @@
- SLF4J - Simple facade or abstraction for various logging frameworks
[MIT License]
http://www.slf4j.org
https://www.slf4j.org
Copyright 2023
QOS.ch
@ -128,7 +128,7 @@
- Bouncy Castle Crypto - Lightweight cryptography API and JCE Extension
[The Apache Software License, Version 2.0]
http://www.bouncycastle.org
https://www.bouncycastle.org
Copyright 2023
The Legion of the Bouncy Castle Inc
@ -147,16 +147,10 @@
- Collections - Niche collections to augment what is already available.
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Collections
Copyright 2022
Copyright 2023
Dorkbox LLC
Extra license information
- AhoCorasickDoubleArrayTrie - Niche collections to augment what is already available.
[The Apache Software License, Version 2.0]
https://github.com/hankcs/AhoCorasickDoubleArrayTrie
Copyright 2018
hankcs <me@hankcs.com>
- Bias, BinarySearch -
[MIT License]
https://git.dorkbox.com/dorkbox/Collections
@ -239,7 +233,7 @@
- Executor - Shell, JVM, and SSH command execution on Linux, MacOS, or Windows for Java 8+
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Executor
Copyright 2022
Copyright 2023
Dorkbox LLC
Extra license information
@ -266,25 +260,25 @@
- kotlinx.coroutines - Library support for Kotlin coroutines with multiplatform support
[The Apache Software License, Version 2.0]
https://github.com/Kotlin/kotlinx.coroutines
Copyright 2022
Copyright 2023
JetBrains s.r.o.
- SLF4J - Simple facade or abstraction for various logging frameworks
[MIT License]
http://www.slf4j.org
Copyright 2022
Copyright 2023
QOS.ch
- Logback - Logback is a logging framework for Java applications
[The Apache Software License, Version 2.0]
http://logback.qos.ch
Copyright 2022
Copyright 2023
QOS.ch
- SSHJ - SSHv2 library for Java
[The Apache Software License, Version 2.0]
https://github.com/hierynomus/sshj
Copyright 2022
Copyright 2023
Jeroen van Erp
SSHJ Contributors

View File

@ -25,12 +25,12 @@ import java.time.Instant
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
plugins {
id("com.dorkbox.GradleUtils") version "3.6"
id("com.dorkbox.Licensing") version "2.17.1"
id("com.dorkbox.VersionUpdate") version "2.5"
id("com.dorkbox.GradlePublish") version "1.15"
id("com.dorkbox.GradleUtils") version "3.11"
id("com.dorkbox.Licensing") version "2.20"
id("com.dorkbox.VersionUpdate") version "2.6"
id("com.dorkbox.GradlePublish") version "1.17"
kotlin("jvm") version "1.7.20"
kotlin("jvm") version "1.8.0"
}
object Extras {
@ -161,8 +161,8 @@ tasks.jar.get().apply {
dependencies {
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
api("com.dorkbox:Collections:1.2")
api("com.dorkbox:Executor:3.11")
api("com.dorkbox:Collections:1.4")
api("com.dorkbox:Executor:3.12")
api("com.dorkbox:NetworkUtils:2.19.1")
api("com.dorkbox:OS:1.6")
api("com.dorkbox:Updates:1.1")