-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (41 loc) · 1.08 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
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
id "org.sonarqube" version "2.2"
}
group 'com.jukusoft'
version '1.0.0-SNAPSHOT'
task wrapper(type: Wrapper) {
gradleVersion = '3.3'
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}
apply plugin: 'java'
sourceCompatibility = 1.8
ext {
gdxVersion = "1.9.5"
box2DLightsVersion = '1.4'
log4jVersion = '1.2.17'
ini4jVersion = '0.5.4'
jsonVersion = '20160810'
gameNetworkLibVersion = '1.0.6-SNAPSHOT'
apacheCommonsLangVersion = '3.5'
mainClassName = "com.jukusoft.libgdx.rpg.desktop.DesktopLauncher"
}
repositories {
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url "https://oss.sonatype.org/content/repositories/"
}
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
jcenter()
mavenCentral()
}
configurations.all {
// check for updates every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}