Skip to content

Commit

Permalink
Update Gradle, Kotlin, external dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor Billing committed Feb 7, 2021
1 parent f775499 commit 05cc657
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ repositories {
}

dependencies {
implementation("org.bouncycastle:bcprov-jdk15on:1.66")
implementation("org.bouncycastle:bcprov-jdk15on:1.68")
}
28 changes: 14 additions & 14 deletions buildSrc/src/main/kotlin/dependencies/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
package dependencies

object Versions {
val JUNIT_JUPITER = "5.7.0"
val BATIK = "1.13"
val KOTLIN = "1.4.10"
val KTOR = "1.4.1"
val PROGUARD = "7.0.0"
val JUNIT_JUPITER = "5.7.1"
val BATIK = "1.14"
val KOTLIN = "1.4.30"
val KTOR = "1.5.1"
val PROGUARD = "7.0.1"
val KOTLESS = "0.1.6"

val MARKDOWNJ_CORE = "0.4"
val ZIP4J = "2.6.3"
val ZIP4J = "2.6.4"
val ITEXTPDF = "5.5.13.2"
val BATIK_TRANSCODER = BATIK
val BATIK_CODEC = BATIK
val SNAKEYAML = "1.27"
val SYSTEM_TRAY = "3.17"
val BOUNCYCASTLE = "1.66"
val BOUNCYCASTLE = "1.68"
val JUNIT_JUPITER_API = JUNIT_JUPITER
val JUNIT_JUPITER_ENGINE = JUNIT_JUPITER
val KOTLIN_SERIALIZATION_JSON = "1.0.0-RC2"
val KOTLIN_COROUTINES_CORE = "1.3.9"
val KOTLIN_SERIALIZATION_JSON = "1.0.1"
val KOTLIN_COROUTINES_CORE = "1.4.2"
val KTOR_SERVER_NETTY = KTOR
val KTOR_SERVER_SERVLET = KTOR
val KTOR_SERIALIZATION = KTOR
Expand All @@ -30,17 +30,17 @@ object Versions {
val PROGUARD_GRADLE = PROGUARD
val WCA_I18N = "0.4.3"
val GOOGLE_APPENGINE_GRADLE = "2.4.1"
val GOOGLE_CLOUD_STORAGE = "1.113.1"
val GOOGLE_CLOUD_STORAGE = "1.113.9"
val TNOODLE_SCRAMBLES = "0.18.0"
val APACHE_COMMONS_LANG3 = "3.11"
val KOTLESS_KTOR = KOTLESS
val TESTING_MOCKK = "1.10.2"
val KOTLINX_ATOMICFU_GRADLE = "0.14.4"
val TESTING_MOCKK = "1.10.5"
val KOTLINX_ATOMICFU_GRADLE = "0.15.1"

object Plugins {
val SHADOW = "6.0.0"
val SHADOW = "6.1.0"
val NODEJS = "2.2.4"
val DEPENDENCY_VERSIONS = "0.33.0"
val DEPENDENCY_VERSIONS = "0.36.0"
val GIT_VERSION_TAG = "0.12.3"

val KOTLIN = Versions.KOTLIN
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-all.zip
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.worldcubeassociation.tnoodle.server.serial

import kotlinx.serialization.json.Json
import kotlinx.serialization.json.JsonConfiguration

object JsonConfig {
const val CLASS_DISCRIMINATOR = "id"
Expand Down

0 comments on commit 05cc657

Please sign in to comment.