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) }