-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
54 lines (41 loc) · 1.34 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
buildscript {
ext.kotlin_version = '1.3.30'
repositories() {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
}
}
group 'auctionsniper'
apply plugin: 'kotlin'
defaultTasks 'clean', 'build'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
ext.smack_version = '3.1.0'
compile "org.igniterealtime.smack:smack:$smack_version"
compile "org.igniterealtime.smack:smackx:$smack_version"
testCompile "com.googlecode.windowlicker:windowlicker-swing:r268"
ext.junit_version = '5.4.1'
testCompile "org.junit.jupiter:junit-jupiter-api:$junit_version"
testCompile "org.junit.jupiter:junit-jupiter-params:$junit_version"
testCompile "org.junit.jupiter:junit-jupiter-engine:$junit_version"
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
ext.jmock_version = '2.11.0'
testCompile "org.jmock:jmock:$jmock_version"
testCompile "org.jmock:jmock-junit5:$jmock_version"
}
sourceSets {
main.kotlin.srcDir "src/main/kotlin"
test.kotlin.srcDir "src/test/kotlin"
test.resources.srcDir "src/test/resources"
}
test {
useJUnitPlatform()
}