-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
80 lines (65 loc) · 2.04 KB
/
build.gradle
File metadata and controls
80 lines (65 loc) · 2.04 KB
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
71
72
73
74
75
76
77
78
79
80
buildscript {
ext.kotlin_version = '1.2.40'
ext.kaytee_plugin_version = "0.20.1.0"
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "uk.q3c.kaytee:kaytee-plugin:$kaytee_plugin_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'uk.q3c.kaytee'
sourceCompatibility = '1.8'
group = 'uk.q3c.util'
kaytee {
version {
number = "1.3.0.0"
}
}
bintray {
user = 'dsowerby'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
ext.assertjVersion = '3.8.0'
ext.commonsLangVersion = '3.3.2'
ext.guavaVersion = '23.0'
ext.guiceVersion = '4.1.0'
ext.slf4jVersion = '1.7.6'
repositories {
jcenter()
mavenCentral()
}
dependencies {
//logging
compile 'org.slf4j:slf4j-api:' + slf4jVersion
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'ch.qos.logback:logback-core:1.1.2'
compile 'org.apache.commons:commons-lang3:' + commonsLangVersion
compile "com.google.inject:guice:$guiceVersion"
compile "com.google.inject.extensions:guice-multibindings:$guiceVersion"
//the easiest way to all the Jung parts
compile 'net.sf.jung:jung-samples:2.0.1'
compile 'com.google.code.findbugs:annotations:3.0.0'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
// compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile 'com.google.guava:guava:' + guavaVersion
compile 'org.apache.commons:commons-collections4:4.1'
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:' + assertjVersion
testCompile 'org.assertj:assertj-guava:1.3.1'
compile 'org.mockito:mockito-all:1.10.19'
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testCompile 'org.spockframework:spock-guice:1.1-groovy-2.4'
testCompile 'cglib:cglib-nodep:3.2.0'
testCompile 'org.objenesis:objenesis:2.2'
testCompile "org.amshove.kluent:kluent:1.36"
}
task wrapper(type: Wrapper) {
gradleVersion = '4.4.1'
}