summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar modmuss502021-06-27 10:17:46 +0100
committerGravatar modmuss502021-06-27 10:17:46 +0100
commit037a0c37b4e89d806939a4b2894664fcbbee3dc6 (patch)
tree92bcc6c25dbfab0c58b669a7337bb3f5034fbc1d
parentBump version (diff)
downloadenigma-037a0c37b4e89d806939a4b2894664fcbbee3dc6.tar.gz
enigma-037a0c37b4e89d806939a4b2894664fcbbee3dc6.tar.xz
enigma-037a0c37b4e89d806939a4b2894664fcbbee3dc6.zip
Update dependencies
Should fix #403
-rw-r--r--build.gradle6
-rw-r--r--enigma-swing/build.gradle6
-rw-r--r--enigma/build.gradle12
-rw-r--r--gradle/wrapper/gradle-wrapper.properties2
4 files changed, 13 insertions, 13 deletions
diff --git a/build.gradle b/build.gradle
index fffab39d..fd2555c6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -16,11 +16,11 @@ subprojects {
16 } 16 }
17 17
18 dependencies { 18 dependencies {
19 implementation 'com.google.guava:guava:30.1-jre' 19 implementation 'com.google.guava:guava:30.1.1-jre'
20 implementation 'com.google.code.gson:gson:2.8.6' 20 implementation 'com.google.code.gson:gson:2.8.7'
21 21
22 testImplementation 'junit:junit:4.13.2' 22 testImplementation 'junit:junit:4.13.2'
23 testImplementation 'org.hamcrest:hamcrest-all:1.3' 23 testImplementation 'org.hamcrest:hamcrest:2.2'
24 } 24 }
25 25
26 group = 'cuchaz' 26 group = 'cuchaz'
diff --git a/enigma-swing/build.gradle b/enigma-swing/build.gradle
index 319f73a3..d1d03ee0 100644
--- a/enigma-swing/build.gradle
+++ b/enigma-swing/build.gradle
@@ -1,6 +1,6 @@
1plugins { 1plugins {
2 id 'application' 2 id 'application'
3 id 'com.github.johnrengelman.shadow' version '5.2.0' 3 id 'com.github.johnrengelman.shadow' version '7.0.0'
4} 4}
5 5
6dependencies { 6dependencies {
@@ -8,8 +8,8 @@ dependencies {
8 implementation project(':enigma-server') 8 implementation project(':enigma-server')
9 9
10 implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3' 10 implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3'
11 implementation 'com.formdev:flatlaf:1.0' 11 implementation 'com.formdev:flatlaf:1.2'
12 implementation 'com.formdev:flatlaf-extras:1.0' // for SVG icons 12 implementation 'com.formdev:flatlaf-extras:1.2' // for SVG icons
13 implementation 'de.sciss:syntaxpane:1.2.0' 13 implementation 'de.sciss:syntaxpane:1.2.0'
14 implementation 'com.github.lukeu:swing-dpi:0.9' 14 implementation 'com.github.lukeu:swing-dpi:0.9'
15 implementation 'org.drjekyll:fontchooser:2.4' 15 implementation 'org.drjekyll:fontchooser:2.4'
diff --git a/enigma/build.gradle b/enigma/build.gradle
index c3d26043..ec1c878c 100644
--- a/enigma/build.gradle
+++ b/enigma/build.gradle
@@ -3,15 +3,15 @@ configurations {
3} 3}
4 4
5dependencies { 5dependencies {
6 implementation 'org.ow2.asm:asm:9.1' 6 implementation 'org.ow2.asm:asm:9.2'
7 implementation 'org.ow2.asm:asm-commons:9.1' 7 implementation 'org.ow2.asm:asm-commons:9.2'
8 implementation 'org.ow2.asm:asm-tree:9.1' 8 implementation 'org.ow2.asm:asm-tree:9.2'
9 implementation 'org.ow2.asm:asm-util:9.1' 9 implementation 'org.ow2.asm:asm-util:9.2'
10 10
11 implementation 'net.fabricmc:procyon-fabric-compilertools:0.5.35.13' 11 implementation 'net.fabricmc:procyon-fabric-compilertools:0.5.35.13'
12 implementation 'net.fabricmc:cfr:0.0.3' 12 implementation 'net.fabricmc:cfr:0.0.4'
13 13
14 proGuard 'com.guardsquare:proguard-base:7.1.0-beta4' 14 proGuard 'com.guardsquare:proguard-base:7.1.0-beta5'
15} 15}
16 16
17// Generate "version.txt" file 17// Generate "version.txt" file
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 0f80bbf5..69a97150 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
1distributionBase=GRADLE_USER_HOME 1distributionBase=GRADLE_USER_HOME
2distributionPath=wrapper/dists 2distributionPath=wrapper/dists
3distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip 3distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
4zipStoreBase=GRADLE_USER_HOME 4zipStoreBase=GRADLE_USER_HOME
5zipStorePath=wrapper/dists 5zipStorePath=wrapper/dists