Updated dependencies. Updated kotlin (of note, the internal jar files are timestamped 1980, and the license module uses the SELF POSTED date (no possible way to manage all dates manually)

This commit is contained in:
nathan 2020-08-18 16:50:43 +02:00
parent 2cd1e5f976
commit cb3eac6299
2 changed files with 5 additions and 8 deletions

View File

@ -20,7 +20,7 @@
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin
Copyright 2020
Copyright 1980
JetBrains s.r.o. and Kotlin Programming Language contributors
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

View File

@ -30,13 +30,13 @@ gradle.startParameter.warningMode = WarningMode.All
plugins {
java
id("com.dorkbox.GradleUtils") version "1.9"
id("com.dorkbox.GradleUtils") version "1.10"
id("com.dorkbox.Licensing") version "2.2"
id("com.dorkbox.VersionUpdate") version "2.0"
id("com.dorkbox.GradlePublish") version "1.4"
id("com.dorkbox.GradlePublish") version "1.5"
id("com.dorkbox.GradleModuleInfo") version "1.0"
kotlin("jvm") version "1.3.72"
kotlin("jvm") version "1.4.0"
}
object Extras {
@ -147,10 +147,7 @@ tasks.jar.get().apply {
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Extras.coroutineVer}")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-common:${Extras.coroutineVer}")
// https://github.com/MicroUtils/kotlin-logging
implementation("io.github.microutils:kotlin-logging:1.8.3") // kotlin wrapper for slf4j
@ -161,7 +158,7 @@ dependencies {
// api("com.jcraft:jsch:0.1.55")
// NOTE: This SSH implementation works (and is well documented)
// https://github.com/hierynomus/sshj
implementation("com.hierynomus:sshj:0.29.0")
implementation("com.hierynomus:sshj:0.30.0")
testImplementation("junit:junit:4.13")