Skip to content

Commit

Permalink
Update dependencies: MAJOR
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed May 14, 2021
1 parent bd587d4 commit c15eb1b
Show file tree
Hide file tree
Showing 7 changed files with 1,546 additions and 3,515 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM openjdk:8-jre
FROM openjdk:11-jre

EXPOSE 42638

Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Expand Up @@ -2,7 +2,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar

plugins {
kotlin("multiplatform") version "1.4.32"
id("com.github.johnrengelman.shadow") version "5.2.0"
id("com.github.johnrengelman.shadow") version "7.0.0"
}

group = "net.zomis"
Expand Down Expand Up @@ -73,12 +73,12 @@ kotlin {
implementation("org.java-websocket:Java-WebSocket:1.5.2")
implementation("log4j:log4j:1.2.17")
implementation("org.slf4j:slf4j-log4j12:1.7.30")
implementation("io.javalin:javalin:2.8.0")
implementation("io.javalin:javalin:3.13.7")
implementation("com.github.kittinunf.fuel:fuel:2.3.1")
implementation("com.amazonaws:aws-java-sdk-dynamodb:1.11.1000")
implementation("org.postgresql:postgresql:42.2.19")
implementation("com.zaxxer:HikariCP:3.4.5")
implementation("com.github.ben-manes.caffeine:caffeine:2.9.0")
implementation("com.zaxxer:HikariCP:4.0.3")
implementation("com.github.ben-manes.caffeine:caffeine:3.0.2")

implementation("ai.djl:api:0.3.0")
implementation("ai.djl:model-zoo:0.3.0")
Expand Down
2 changes: 1 addition & 1 deletion games-server/.codedeploy/Dockerfile
@@ -1,4 +1,4 @@
FROM openjdk:8-jre
FROM openjdk:11-jre

EXPOSE 42638

Expand Down
8 changes: 4 additions & 4 deletions games-server/build.gradle
Expand Up @@ -14,7 +14,7 @@ buildscript {
}

plugins {
id "com.github.johnrengelman.shadow" version "5.2.0"
id "com.github.johnrengelman.shadow" version "7.0.0"
}

apply plugin: 'application'
Expand Down Expand Up @@ -62,12 +62,12 @@ dependencies {
compile "log4j:log4j:1.2.17"
compile 'org.slf4j:slf4j-log4j12:1.7.30'
compile "com.github.lewik.klog:klog-jvm:$klog_version"
compile "io.javalin:javalin:2.8.0"
compile "io.javalin:javalin:3.13.7"
compile "com.github.kittinunf.fuel:fuel:2.3.1"
compile group: 'com.amazonaws', name: 'aws-java-sdk-dynamodb', version: '1.11.1000'
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.19'
compile 'com.zaxxer:HikariCP:3.4.5'
compile 'com.github.ben-manes.caffeine:caffeine:2.9.0'
compile 'com.zaxxer:HikariCP:4.0.3'
compile 'com.github.ben-manes.caffeine:caffeine:3.0.2'
compile group: 'ai.djl', name: 'api', version: '0.3.0'
compile group: 'ai.djl', name: 'model-zoo', version: '0.3.0'
runtime group: 'ai.djl.mxnet', name: 'mxnet-engine', version: '0.3.0'
Expand Down

0 comments on commit c15eb1b

Please sign in to comment.