-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
27 lines (23 loc) · 916 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
apply plugin: 'java-library'
group 'org.ryuu'
version '0.2.0-1.9.9'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
// https://mvnrepository.com/artifact/org.projectlombok/lombok
annotationProcessor 'org.projectlombok:lombok:1.18.28'
// https://mvnrepository.com/artifact/org.projectlombok/lombok
compileOnly 'org.projectlombok:lombok:1.18.28'
// https://mvnrepository.com/artifact/com.badlogicgames.gdx/gdx
implementation 'com.badlogicgames.gdx:gdx:1.9.9'
// https://mvnrepository.com/artifact/com.badlogicgames.gdx/gdx-box2d
implementation 'com.badlogicgames.gdx:gdx-box2d:1.9.9'
implementation 'com.github.Ryuu-64:gdx-box2d-interface-contact-listener:1.0.0-1.9.9'
implementation 'com.github.Ryuu-64:functional:1.1.1'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}