-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (38 loc) · 1.11 KB
/
build.gradle
File metadata and controls
48 lines (38 loc) · 1.11 KB
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
plugins {
id "com.github.ben-manes.versions" version "0.42.0"
id "org.jetbrains.kotlin.jvm" version "$kotlinVersion"
}
repositories {
google()
mavenCentral()
}
def jmeVersion = "3.5.2-stable"
allprojects {
version = "1.7.0"
}
subprojects {
apply plugin: 'kotlin'
apply plugin: 'maven'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
google()
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
testCompile "org.jmonkeyengine:jme3-core:$jmeVersion"
testCompile "org.jmonkeyengine:jme3-desktop:$jmeVersion"
testCompile "org.jmonkeyengine:jme3-lwjgl3:$jmeVersion"
testCompile "org.jmonkeyengine:jme3-plugins:$jmeVersion"
testCompile "org.jmonkeyengine:jme3-jogg:$jmeVersion"
testCompile "junit:junit:4.13.2"
}
}
project(":chimp-utils-jme3") {
dependencies {
compile project(":chimp-utils-basics")
compile "org.jmonkeyengine:jme3-core:$jmeVersion"
}
}