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

54 lines
1.4 KiB
Groovy

plugins {
id "io.spring.compatibility-test" version "0.0.2"
id "java-library"
id "maven-publish"
}
description = "Spring REST Docs Asciidoctor Extension"
configurations {
merge
testRuntimeOnly { extendsFrom merge }
}
dependencies {
internal(platform(project(":spring-restdocs-platform")))
merge project(":spring-restdocs-asciidoctor-1.5")
merge project(":spring-restdocs-asciidoctor-1.6")
merge project(":spring-restdocs-asciidoctor-2.x")
testImplementation("junit:junit")
testImplementation("org.apache.pdfbox:pdfbox") {
exclude group: "commons-logging", module: "commons-logging"
}
testImplementation("org.asciidoctor:asciidoctorj:1.5.8.1")
testImplementation("org.assertj:assertj-core")
testImplementation("org.springframework:spring-core")
testRuntimeOnly("org.asciidoctor:asciidoctorj-pdf")
}
jar {
dependsOn(":spring-restdocs-asciidoctor-1.5:jar")
dependsOn(":spring-restdocs-asciidoctor-1.6:jar")
dependsOn(":spring-restdocs-asciidoctor-2.x:jar")
from configurations.merge.collect { file -> zipTree(file) }
}
compatibilityTest {
dependency('AsciidoctorJ') { asciidoctorJ ->
asciidoctorJ.groupId = "org.asciidoctor"
asciidoctorJ.artifactId = "asciidoctorj"
asciidoctorJ.versions = [
asciidoctorj16Version,
asciidoctorj20Version,
asciidoctorj21Version,
asciidoctorj22Version,
asciidoctorj23Version,
asciidoctorj24Version,
asciidoctorj25Version,
]
}
}