22 lines
540 B
Groovy
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")
|
|
}
|