diff --git a/build.gradle b/build.gradle index 387738e..349fa64 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,17 @@ +buildscript { + repositories { + mavenCentral() + } +} + +plugins { + id("org.asciidoctor.jvm.convert") version "3.3.2" +} + +repositories { + mavenCentral() +} + import nextflow.gradle.plugins.NextflowPlugin apply plugin: NextflowPlugin @@ -14,3 +28,8 @@ nextflowPlugin{ extensionPoints = [ ] } + +asciidoctor{ + baseDir 'src/docs/asciidoc' + attributes revnumber : { project.version.toString() } +} \ No newline at end of file