Skip to content

Commit 1295a77

Browse files
committed
Alpha 1.8.5 - Incremental Update
1 parent d58d1a8 commit 1295a77

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ task createPom {
3737
project {
3838
groupId 'com.redomar.game'
3939
artifactId 'javagame'
40-
version 'Alpha 1.8.4'
40+
version 'Alpha 1.8.5'
4141

4242
inceptionYear '2013'
4343
licenses {

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.redomar.game</groupId>
66
<artifactId>javagame</artifactId>
7-
<version>Alpha 1.8.4</version>
7+
<version>Alpha 1.8.5</version>
88
<inceptionYear>2013</inceptionYear>
99
<licenses>
1010
<license>
@@ -16,20 +16,20 @@
1616
<dependencies>
1717
<dependency>
1818
<groupId>org.apache.commons</groupId>
19-
<artifactId>commons-lang3</artifactId>
20-
<version>3.4</version>
21-
<scope>compile</scope>
19+
<artifactId>commons-text</artifactId>
20+
<version>+</version>
21+
<scope>runtime</scope>
2222
</dependency>
2323
<dependency>
24-
<groupId>com.googlecode.soundlibs</groupId>
25-
<artifactId>mp3spi</artifactId>
26-
<version>1.9.5-1</version>
27-
<scope>compile</scope>
24+
<groupId>org.apache.commons</groupId>
25+
<artifactId>commons-lang3</artifactId>
26+
<version>3.+</version>
27+
<scope>runtime</scope>
2828
</dependency>
2929
<dependency>
3030
<groupId>junit</groupId>
3131
<artifactId>junit</artifactId>
32-
<version>4.12</version>
32+
<version>4.13</version>
3333
<scope>test</scope>
3434
</dependency>
3535
</dependencies>

src/com/redomar/game/Game.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class Game extends Canvas implements Runnable {
3131

3232
// Setting the size and name of the frame/canvas
3333
private static final long serialVersionUID = 1L;
34-
private static final String game_Version = "v1.8.4 Alpha";
34+
private static final String game_Version = "v1.8.5 Alpha";
3535
private static final int WIDTH = 160;
3636
private static final int HEIGHT = (WIDTH / 3 * 2);
3737
private static final int SCALE = 3;

0 commit comments

Comments
 (0)