forked from Hexworks/zircon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·63 lines (56 loc) · 2.5 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
buildscript {
ext.kotlinVersion = "1.3.0"
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
group "org.hexworks.zircon"
version "2018.5.22-PREVIEW"
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/kotlin/kotlinx" }
maven { url 'https://jitpack.io' }
}
}
subprojects {
apply plugin: "maven-publish"
}
ext {
cobaltVersion = "2018.0.3-BETA"
gdxVersion = "1.9.6"
junitVersion = "4.12"
mockitoVersion = "1.10.19"
assertjVersion = "3.6.2"
caffeineVersion = "2.5.4"
snakeyamlVersion = "1.18"
trieMapVersion = "0.2.23"
filtersVersion = "2.0.235-1"
slf4jVersion = "1.7.25"
libraries = [
kotlin_stdlib : "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion",
kotlin_stdlib_common : "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion",
kotlin_reflect : "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion",
kotlin_test_annotations_common: "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlinVersion",
kotlin_test_common : "org.jetbrains.kotlin:kotlin-test-common:$kotlinVersion",
cobalt_events : "org.hexworks.cobalt:cobalt.events:$cobaltVersion",
cobalt_events_jvm : "org.hexworks.cobalt:cobalt.events-jvm:$cobaltVersion",
cobalt_datatypes_jvm : "org.hexworks.cobalt:cobalt.datatypes-jvm:$cobaltVersion",
slf4j_api : "org.slf4j:slf4j-api:$slf4jVersion",
slf4j_simple : "org.slf4j:slf4j-simple:$slf4jVersion",
caffeine : "com.github.ben-manes.caffeine:caffeine:$caffeineVersion",
snakeyaml : "org.yaml:snakeyaml:$snakeyamlVersion",
trie_map : "com.github.romix:java-concurrent-hash-trie-map:$trieMapVersion",
filters : "com.jhlabs:filters:$filtersVersion",
junit : "junit:junit:$junitVersion",
mockito : "org.mockito:mockito-all:$mockitoVersion",
assertj : "org.assertj:assertj-core:$assertjVersion",
]
}