forked from libgdx/gdx-liftoff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (36 loc) · 1.05 KB
/
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
apply plugin: 'kotlin'
apply plugin: 'java-library'
apply plugin: 'application'
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
version = "1.9.11.3"
mainClassName = 'com.github.czyzby.setup.MainKt'
jar {
manifest {
attributes 'Main-Class': mainClassName
}
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
}
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url 'https://jitpack.io' }
jcenter()
}
dependencies {
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
api "org.apache.commons:commons-exec:$commonsExecVersion"
api 'org.slf4j:slf4j-nop:1.7.25'
api "com.badlogicgames.gdx:gdx:$gdxVersion"
api "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
api "io.github.lukehutch:fast-classpath-scanner:2.21"
api "com.kotcrab.vis:vis-ui:1.4.6"
}