19 lines
452 B
Groovy
19 lines
452 B
Groovy
plugins {
|
|
id 'org.asciidoctor.convert' version '1.5.3'
|
|
}
|
|
|
|
dependencies {
|
|
testCompile project(':spring-restdocs-mockmvc')
|
|
testCompile 'javax.validation:validation-api'
|
|
}
|
|
|
|
tasks.findByPath("artifactoryPublish")?.enabled = false
|
|
|
|
asciidoctor {
|
|
sources {
|
|
include 'index.adoc'
|
|
}
|
|
attributes 'revnumber': project.version,
|
|
'branch-or-tag': project.version.endsWith('SNAPSHOT') ? 'master': "v${project.version}"
|
|
inputs.files(sourceSets.test.java)
|
|
} |