-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
70 lines (59 loc) · 1.53 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
plugins {
id 'java'
id 'maven-publish'
id 'java-library'
}
ext {
jmeModules = [
'jme3-core',
'jme3-plugins',
'jme3-effects',
'jme3-networking',
'jme3-jogg',
'jme3-terrain',
'jme3-blender',
'jme3-bullet',
'jme3-bullet-native'
]
jmeVersion = '3.2.+'
lemurVersion = '1.12.+'
lemurProtoVersion = '1.10.+'
lemurPropsVersion = '1.1.+'
slf4Version = '1.7.2'
}
allprojects {
apply plugin: 'java'
apply plugin: 'maven-publish'
group 'com.nx'
version '1.0.0-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
jcenter()
mavenCentral()
}
dependencies {
constraints {
jmeModules.each { jmeModule ->
implementation "org.jmonkeyengine:$jmeModule:${jmeVersion}"
}
implementation "org.slf4j:slf4j-api:$slf4Version"
implementation "com.simsilica:lemur:$lemurVersion"
implementation "com.simsilica:lemur-proto:$lemurProtoVersion"
implementation "com.simsilica:lemur-props:$lemurPropsVersion"
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
}
dependencies {
api project(":util-jme3-base")
api project(":util-jme3-cross")
api project(":util-jme3-debug")
api project(":util-jme3-lemur")
}