Skip to content
This repository was archived by the owner on Mar 15, 2024. It is now read-only.

Commit 00444b7

Browse files
committed
update maven and gradle configs
1 parent 30ae959 commit 00444b7

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ dependencies {
88
compile "com.badlogicgames.gdx:gdx:${gdxVersion}"
99
}
1010
compile "org.slf4j:slf4j-api:${slf4jVersion}"
11+
compile "org.lwjgl:lwjgl:$lwjglVersion"
12+
compile "org.lwjgl:lwjgl-remotery:$lwjglVersion"
1113
}
1214

1315
sourceCompatibility = 1.8

pom.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,15 @@
2424
<scope>provided</scope>
2525
</dependency>
2626
<dependency>
27-
<groupId>com.google.code.findbugs</groupId>
28-
<artifactId>jsr305</artifactId>
29-
<version>3.0.1</version>
27+
<groupId>org.lwjgl</groupId>
28+
<artifactId>lwjgl</artifactId>
29+
<version>${lwjgl.version}</version>
30+
<scope>provided</scope>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.lwjgl</groupId>
34+
<artifactId>lwjgl-remotery</artifactId>
35+
<version>${lwjgl.version}</version>
3036
<scope>provided</scope>
3137
</dependency>
3238
<dependency>

0 commit comments

Comments
 (0)