-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
42 lines (35 loc) · 890 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
javafx {
version = "22.0.1"
modules = [ 'javafx.controls' ]
}
group 'org.dozingcatsoftware'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
sourceSets {
main {
java {
srcDirs = ['src']
}
resources {
srcDirs "resources"
}
}
}
ext {
gdxVersion = '1.12.1'
}
dependencies {
implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
implementation "com.googlecode.json-simple:json-simple:1.1.1"
implementation group: 'org.apache.groovy', name: 'groovy', version: '4.0.23'
}
mainClassName = 'com.dozingcatsoftware.vectorpinball.editor.Main'