-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
56 lines (50 loc) · 1.42 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
/*
* This is a Gradle build file:
* - Gradle Homepage: http://gradle.org/
* - Gradle Documentation: http://gradle.org/documentation
* - View tasks for this project: $ gradlew tasks
*/
buildscript {
repositories {
google()
jcenter()
mavenLocal()
maven {
url "http://artifactory.terasology.org/artifactory/virtual-repo-live"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'org.terasology:reflections:0.9.12-MB'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
ext {
// Android version support
android_annotation_version = "28.0.0"
// Standard Utility
guava_version = "27.0.1-android"
slf4j_version = "1.7.25"
gson_version = "2.8.5"
jcip_annotation_version = "1.0"
// Testing
junit_version = "4.12"
logback_version = "1.2.3"
mockito_version = "1.10.19"
}
}
allprojects {
repositories {
google()
jcenter()
mavenLocal()
maven {
url "http://artifactory.terasology.org/artifactory/virtual-repo-live"
}
}
}
// Library and distribution config
description = 'A set of libraries providing core capabilities for games and game engines'
task clean(type: Delete) {
delete rootProject.buildDir
}