-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (35 loc) · 933 Bytes
/
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
plugins {
id 'groovy'
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.9.21'
id 'org.jetbrains.dokka' version '1.9.10'
}
group = 'be.amedee'
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.18'
implementation 'com.google.guava:guava:32.1.3-jre'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
testImplementation 'org.codehaus.groovy:groovy-all:3.0.18'
testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5:1.9.0"
}
test {
useJUnitPlatform()
}
tasks.test {
testLogging {
events "passed", "skipped", "failed"
}
}
application {
mainClass = 'MainKt'
}
apply plugin: 'application'
groovydoc {}
dokkaHtml {}
dokkaJavadoc {}