forked from ePages-de/restdocs-api-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
28 lines (22 loc) · 827 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm")
}
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
val springBootVersion: String by extra
val springRestDocsVersion: String by extra
val junitVersion: String by extra
dependencies {
compile(kotlin("stdlib-jdk8"))
compile(project(":restdocs-api-spec"))
compile("org.springframework.restdocs:spring-restdocs-restassured:$springRestDocsVersion")
testCompile("org.springframework.boot:spring-boot-starter-test:$springBootVersion") {
exclude("junit")
}
testCompile("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
testImplementation("org.junit-pioneer:junit-pioneer:0.2.2")
testCompile("org.springframework.boot:spring-boot-starter-hateoas:$springBootVersion")
}