-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (22 loc) · 939 Bytes
/
build.gradle
File metadata and controls
27 lines (22 loc) · 939 Bytes
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.21'
id 'groovy'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.6.21'
implementation group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.11'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.23.1'
testImplementation group: 'io.kotest', name: 'kotest-assertions-core', version: '5.1.0'
testImplementation group: 'com.willowtreeapps.assertk', name: 'assertk-jvm', version: '0.25'
testImplementation group: 'io.strikt', name: 'strikt-core', version: '0.34.1'
testImplementation group: 'org.spockframework', name: 'spock-core', version: '2.1-groovy-3.0'
}
test {
useJUnitPlatform()
}