-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
40 lines (33 loc) · 1.81 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
buildscript {
ext.kotlin_version = '1.0.4'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
subprojects {
apply plugin: 'kotlin'
dependencies {
def coreVersion = '0.26.3'
def repo = 'Qabel'
compile 'com.github.'+repo+'.qabel-core:core:'+coreVersion
compile 'com.github.'+repo+'.qabel-core:box:'+coreVersion
compile 'com.github.'+repo+'.qabel-core:chat:'+coreVersion
testCompile 'com.github.'+repo+'.qabel-core:box:'+coreVersion+':tests'
testCompile 'com.github.'+repo+'.qabel-core:box:'+coreVersion+':sources'
testCompile 'com.github.'+repo+'.qabel-core:core:'+coreVersion+':tests'
testCompile 'com.github.'+repo+'.qabel-core:core:'+coreVersion+':sources'
testCompile 'com.github.'+repo+'.qabel-core:chat:'+coreVersion+':tests'
testCompile 'com.github.'+repo+'.qabel-core:chat:'+coreVersion+':sources'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile 'com.nhaarman:mockito-kotlin:0.6.0'
testCompile 'junit:junit:[4.0.0,5.0[' // Eclipse Public License - v 1.0 https://github.com/junit-team/junit/blob/master/LICENSE-junit.txt
testCompile 'org.meanbean:meanbean:[2.0,3.0[' // Apache License V2.0 http://meanbean.sourceforge.net
testCompile 'org.testfx:testfx-core:[4.0,5.0[' // EUPL 1.1 https://github.com/TestFX/TestFX/blob/master/LICENSE.txt
testCompile 'org.testfx:testfx-junit:[4.0,5.0[' // EUPL 1.1 https://github.com/TestFX/TestFX/blob/master/LICENSE.txt
testCompile 'org.hamcrest:java-hamcrest:[2.0.0.0,3.0['
testCompile 'org.mockito:mockito-core:[2.0.52-beta,3.0['
}
}