-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (44 loc) · 1.51 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
54
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.15'
id 'application'
}
group 'org.gandji'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven { url "http://dl.bintray.com/jmonkeyengine/org.jmonkeyengine" }
}
def jme3 = [v:'3.2.4-stable', g:'org.jmonkeyengine']
dependencies {
compile group: "org.springframework.boot", name: "spring-boot-starter-parent", version: "2.0.1.RELEASE", ext: 'pom'
compile "org.springframework.boot:spring-boot:2.0.1.RELEASE"
compile "org.springframework.boot:spring-boot-autoconfigure:2.0.1.RELEASE"
compile "org.springframework:spring-context:5.1.10.RELEASE"
compile "org.projectlombok:lombok:1.18.10"
annotationProcessor 'org.projectlombok:lombok:1.18.8'
compile "com.simsilica:lemur:1.11.0"
compile "com.simsilica:lemur-proto:1.10.0"
compile "${jme3.g}:jme3-testdata:3.3.0-beta1"
compile "${jme3.g}:jme3-core:${jme3.v}"
compile "${jme3.g}:jme3-terrain:${jme3.v}"
compile "${jme3.g}:jme3-bullet:${jme3.v}"
compile "${jme3.g}:jme3-bullet-native:${jme3.v}"
runtime "${jme3.g}:jme3-desktop:${jme3.v}"
runtime "${jme3.g}:jme3-lwjgl:${jme3.v}"
compile "${jme3.g}:jme3-plugins:${jme3.v}"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
intellij {
version '2018.3.4'
}
patchPluginXml {
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}
application {
mainClassName = 'org.gandji.my3dgame.My3DGame'
}