-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
54 lines (41 loc) · 1.52 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
/**
* Root-level SiO2 build script for the core library.
*/
plugins {
id 'sio2.published-library'
}
version='1.9.0-SNAPSHOT'
group='com.simsilica'
ext.jmeVersion = "3.3.0-stable"
ext.log4jVersion = '2.15.0'
ext.slf4jVersion = '1.7.32'
ext.guavaVersion = '21.0'
//ext.groovyVersion = '2.4.5'
ext.groovyVersion = '2.4.11' // 2.4.21 is the latest 2.4.x
// Set this module's maven pom description
publishing.publications.library(MavenPublication).pom {
description = 'A set of useful classes for game development.'
}
dependencies {
api "com.google.guava:guava:$guavaVersion"
api "org.jmonkeyengine:jme3-core:$jmeVersion"
api "org.jmonkeyengine:jme3-networking:$jmeVersion"
api "com.simsilica:lemur:1.16.0"
api "com.simsilica:sim-math:1.5.0"
api "com.simsilica:zay-es:1.7.0-SNAPSHOT"
api "com.simsilica:zay-es-net:1.7.0-SNAPSHOT"
implementation "org.codehaus.groovy:groovy-all:$groovyVersion"
implementation "org.slf4j:slf4j-api:$slf4jVersion"
implementation "org.apache.logging.log4j:log4j-api:$log4jVersion"
implementation "org.apache.logging.log4j:log4j-core:$log4jVersion"
testImplementation 'junit:junit:4.12'
testImplementation 'org.codehaus.groovy:groovy-all:2.4.11'
testRuntimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion"
}
test {
testLogging {
// Useful when developing tests to be able to turn these on/off
//outputs.upToDateWhen {false}
//showStandardStreams = true
}
}