-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle
36 lines (27 loc) · 887 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}"
}
}
repositories {
mavenCentral()
}
apply plugin: 'kotlin'
apply plugin: 'application'
mainClassName = "com.example.HelloWorldKt"
test {
useJUnitPlatform()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlin_version}"
implementation platform("org.http4k:http4k-bom:${http4k_version}")
implementation "org.http4k:http4k-core"
implementation group: "org.webjars", name: "swagger-ui", version: "3.36.2"
testImplementation platform("org.junit:junit-bom:${junit_version}")
testImplementation "org.http4k:http4k-testing-hamkrest"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.jupiter:junit-jupiter-engine"
}