Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions restdocs-api-spec-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,13 @@ pluginBundle {
val jacocoRuntime by configurations.creating

dependencies {
compileOnly(gradleKotlinDsl())

implementation(kotlin("gradle-plugin"))
implementation(kotlin("stdlib-jdk8"))

implementation(project(":restdocs-api-spec-openapi-generator"))
implementation(project(":restdocs-api-spec-openapi3-generator"))
implementation(project(":restdocs-api-spec-postman-generator"))
implementation("tools.jackson.core:jackson-databind")
implementation("tools.jackson.module:jackson-module-kotlin")
implementation("tools.jackson.dataformat:jackson-dataformat-yaml")
implementation("tools.jackson.core:jackson-databind:3.0.2")
implementation("tools.jackson.module:jackson-module-kotlin:3.0.2")
implementation("tools.jackson.dataformat:jackson-dataformat-yaml:3.0.2")

testImplementation("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
Expand Down
5 changes: 2 additions & 3 deletions restdocs-api-spec-jsonschema/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ the<DependencyManagementExtension>().apply {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(project(":restdocs-api-spec-model"))
implementation("com.github.erosb:everit-json-schema:1.11.0")
implementation("tools.jackson.core:jackson-databind")
implementation("tools.jackson.module:jackson-module-kotlin")
implementation("tools.jackson.core:jackson-databind:3.0.2")
implementation("tools.jackson.module:jackson-module-kotlin:3.0.2")

testImplementation("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-mockmvc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ the<DependencyManagementExtension>().apply {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))

api(project(":restdocs-api-spec"))
implementation("org.springframework.restdocs:spring-restdocs-mockmvc")
Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ the<DependencyManagementExtension>().apply {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("com.fasterxml.jackson.core:jackson-annotations")
}

Expand Down
7 changes: 3 additions & 4 deletions restdocs-api-spec-openapi-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,14 @@ the<DependencyManagementExtension>().apply {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))

api(project(":restdocs-api-spec-model"))
api(project(":restdocs-api-spec-jsonschema"))
api("io.swagger:swagger-core:1.6.16")
implementation("org.springframework.boot:spring-boot-jackson2")
implementation("tools.jackson.core:jackson-databind")
implementation("tools.jackson.module:jackson-module-kotlin")
implementation("tools.jackson.dataformat:jackson-dataformat-yaml")
implementation("tools.jackson.core:jackson-databind:3.0.2")
implementation("tools.jackson.module:jackson-module-kotlin:3.0.2")
implementation("tools.jackson.dataformat:jackson-dataformat-yaml:3.0.2")

testImplementation("io.swagger:swagger-parser:1.0.75")
testImplementation("org.junit.jupiter:junit-jupiter-engine")
Expand Down
7 changes: 3 additions & 4 deletions restdocs-api-spec-openapi3-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,14 @@ the<DependencyManagementExtension>().apply {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))

api(project(":restdocs-api-spec-model"))
api(project(":restdocs-api-spec-jsonschema"))

api("io.swagger.core.v3:swagger-core:2.2.37")
implementation("tools.jackson.core:jackson-databind")
implementation("tools.jackson.module:jackson-module-kotlin")
implementation("tools.jackson.dataformat:jackson-dataformat-yaml")
implementation("tools.jackson.core:jackson-databind:3.0.2")
implementation("tools.jackson.module:jackson-module-kotlin:3.0.2")
implementation("tools.jackson.dataformat:jackson-dataformat-yaml:3.0.2")
implementation("org.springframework.boot:spring-boot-jackson2")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")

Expand Down
5 changes: 2 additions & 3 deletions restdocs-api-spec-postman-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ the<DependencyManagementExtension>().apply {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))

implementation(project(":restdocs-api-spec-model"))
implementation("tools.jackson.core:jackson-databind")
implementation("tools.jackson.module:jackson-module-kotlin")
implementation("tools.jackson.core:jackson-databind:3.0.2")
implementation("tools.jackson.module:jackson-module-kotlin:3.0.2")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.springframework.boot:spring-boot-jackson2")

Expand Down
1 change: 0 additions & 1 deletion restdocs-api-spec-webtestclient/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ the<DependencyManagementExtension>().apply {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))

implementation(project(":restdocs-api-spec"))
implementation("org.springframework.restdocs:spring-restdocs-webtestclient")
Expand Down
5 changes: 2 additions & 3 deletions restdocs-api-spec/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,13 @@ the<DependencyManagementExtension>().apply {
}

dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("reflect"))

implementation("org.springframework.restdocs:spring-restdocs-core")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("tools.jackson.core:jackson-databind")
implementation("tools.jackson.module:jackson-module-kotlin")
implementation("tools.jackson.core:jackson-databind:3.0.2")
implementation("tools.jackson.module:jackson-module-kotlin:3.0.2")
implementation("com.samskivert:jmustache:$jmustacheVersion")

testImplementation("org.springframework.boot:spring-boot-starter-test")
Expand Down