-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle.kts
37 lines (30 loc) · 918 Bytes
/
build.gradle.kts
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.6.10"
id("org.jlleitschuh.gradle.ktlint") version "10.1.0"
application
}
group = "eu.jameshamilton"
version = "1.0"
repositories {
mavenCentral()
maven(url = "https://jitpack.io")
}
dependencies {
implementation("com.github.Guardsquare:proguard-core:89f74ba111")
testImplementation(kotlin("test"))
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.0.3")
testImplementation("io.kotest:kotest-assertions-core-jvm:5.0.3")
testImplementation("io.kotest:kotest-property-jvm:5.0.3")
testImplementation("io.kotest:kotest-framework-datatest:5.0.3")
testImplementation("io.mockk:mockk:1.12.2")
}
tasks.test {
useJUnitPlatform()
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
application {
mainClass.set("eu.jameshamilton.log4shell.MainKt")
}