Files
spring-restdocs/docs/build.gradle
2015-06-23 18:00:37 +01:00

20 lines
388 B
Groovy

plugins {
id 'org.asciidoctor.convert' version '1.5.2'
}
dependencies {
compile 'org.springframework:spring-webmvc'
testCompile project(':spring-restdocs')
testCompile 'junit:junit'
testCompile 'org.springframework:spring-test'
}
tasks.findByPath("artifactoryPublish")?.enabled = false
asciidoctor {
sources {
include 'index.adoc'
}
attributes 'revnumber': project.version
}