From 603ba0413c4b8fea44382a40af154f685ef4e482 Mon Sep 17 00:00:00 2001 From: Jorge Aguilera Date: Thu, 22 Feb 2024 14:41:32 +0100 Subject: [PATCH] fix conflicts after merge main Signed-off-by: Jorge Aguilera --- build.gradle | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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