Updated libraries, added kotlin

This commit is contained in:
Robinson 2021-05-11 17:16:48 +02:00
parent 8151cf3cea
commit 6a41f7cec8
1 changed files with 5 additions and 3 deletions

View File

@ -25,10 +25,12 @@ import java.time.Instant
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 "2.6" id("com.dorkbox.GradleUtils") version "2.8"
id("com.dorkbox.Licensing") version "2.7" id("com.dorkbox.Licensing") version "2.7"
id("com.dorkbox.VersionUpdate") version "2.3" id("com.dorkbox.VersionUpdate") version "2.3"
id("com.dorkbox.GradlePublish") version "1.11" id("com.dorkbox.GradlePublish") version "1.11"
kotlin("jvm") version "1.5.0"
} }
object Extras { object Extras {
@ -91,10 +93,10 @@ dependencies {
// implementation("com.dorkbox:MinLog:2.3") // implementation("com.dorkbox:MinLog:2.3")
// listed as compile only, since we will be using kryo ANYWAYS if we use this project. **We don't want a hard dependency.** // listed as compile only, since we will be using kryo ANYWAYS if we use this project. **We don't want a hard dependency.**
compileOnly("com.esotericsoftware:kryo:5.1.0") compileOnly("com.esotericsoftware:kryo:5.1.1")
// listed as compile only, since we will be using bouncy castle ANYWAYS if we use this project. **We don't want a hard dependency.** // listed as compile only, since we will be using bouncy castle ANYWAYS if we use this project. **We don't want a hard dependency.**
compileOnly("org.bouncycastle:bcprov-jdk15on:1.67") compileOnly("org.bouncycastle:bcprov-jdk15on:1.68")
} }
publishToSonatype { publishToSonatype {