Skip to content

Commit 487fc4c

Browse files
committed
Update dependencies and Gradle Wrapper
1 parent 6a758dc commit 487fc4c

File tree

7 files changed

+68
-40
lines changed

7 files changed

+68
-40
lines changed

build.gradle

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
2-
id 'com.adarshr.test-logger' version '1.7.0'
2+
id 'com.adarshr.test-logger' version '2.0.0'
3+
id "nebula.lint" version "16.0.2"
34
}
45

56
repositories{
@@ -19,15 +20,13 @@ sourceSets{
1920
}
2021

2122
dependencies{
22-
compile 'org.apache.commons:commons-lang3:3.4'
23-
compile('com.googlecode.soundlibs:mp3spi:1.9.5-1'){
24-
exclude module: 'junit'
25-
}
26-
testCompile 'junit:junit:4.12'
27-
compile files('res/jars/JSplashScreen.jar')
23+
implementation 'org.apache.commons:commons-text:+'
24+
implementation 'org.apache.commons:commons-lang3:3.+'
25+
testImplementation 'junit:junit:4.13'
26+
implementation files('res/jars/JSplashScreen.jar')
2827
}
2928

3029
jar {
31-
from configurations.compile.collect { zipTree it }
30+
from configurations.compileClasspath.collect { zipTree it }
3231
manifest.attributes 'Main-Class' : 'com.redomar.game.Launcher'
3332
}

gradle/wrapper/gradle-wrapper.jar

5.75 KB
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Thu Feb 14 18:53:49 GMT 2019
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.0-all.zip

gradlew

Lines changed: 41 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 17 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/com/redomar/game/Game.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import com.redomar.game.lib.Time;
1313
import com.redomar.game.script.PrintTypes;
1414
import com.redomar.game.script.Printing;
15-
import org.apache.commons.lang3.text.WordUtils;
15+
import org.apache.commons.text.WordUtils;
1616

1717
import javax.swing.*;
1818
import java.awt.*;

src/com/redomar/game/menu/Menu.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import com.redomar.game.lib.Font;
66
import com.redomar.game.lib.Mouse;
77
import com.thehowtotutorial.splashscreen.JSplash;
8-
import org.apache.commons.lang3.text.WordUtils;
8+
import org.apache.commons.text.WordUtils;
99

1010
import javax.swing.*;
1111
import java.awt.*;

0 commit comments

Comments
 (0)