-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (43 loc) · 1021 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
43
44
45
46
47
48
49
50
51
52
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.3'
}
}
allprojects {
apply plugin: "idea"
version = '1.0'
ext {
appName = "RussianAiCup2017"
}
}
group 'com.krld'
version '1.0'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'Main '
run {
standardInput = System.in
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
task deploy (dependsOn: shadowJar, type: Copy) {
from "./build/libs"
into "./xout/"
include "*.jar"
rename { String fileName ->
"ms.jar"
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.json', name: 'json', version: '20180130'
compile "com.badlogicgames.gdx:gdx:1.9.8"
compile "com.badlogicgames.gdx:gdx-platform:1.9.8:natives-desktop"
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:1.9.8"
}