Files
spring-restdocs/spring-restdocs-asciidoctor/build.gradle
2023-01-10 17:55:11 +00:00

22 lines
540 B
Groovy

plugins {
id "java-library"
id "maven-publish"
}
description = "Spring REST Docs Asciidoctor Extension"
dependencies {
implementation("org.asciidoctor:asciidoctorj")
internal(platform(project(":spring-restdocs-platform")))
testImplementation("junit:junit")
testImplementation("org.apache.pdfbox:pdfbox") {
exclude group: "commons-logging", module: "commons-logging"
}
testImplementation("org.assertj:assertj-core")
testImplementation("org.springframework:spring-core")
testRuntimeOnly("org.asciidoctor:asciidoctorj-pdf")
}