From 787d09e2b00f49ad9702542d9f5f3f94611fa0cc Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Fri, 4 Aug 2023 15:20:23 +0100 Subject: [PATCH] Downgrade node in antora build - Mostly to make it easier for those who can't yet use node 18. --- spring-shell-docs/spring-shell-docs.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/spring-shell-docs/spring-shell-docs.gradle b/spring-shell-docs/spring-shell-docs.gradle index 4eb4e3f4..0929a3c7 100644 --- a/spring-shell-docs/spring-shell-docs.gradle +++ b/spring-shell-docs/spring-shell-docs.gradle @@ -14,6 +14,10 @@ dependencies { testImplementation 'org.awaitility:awaitility' } +node { + version = '16.15.0' +} + antora { version = '3.2.0-alpha.2' options = [clean: true, fetch: !project.gradle.startParameter.offline, stacktrace: true] @@ -42,4 +46,4 @@ def resolvedVersions(Configuration configuration) { return configuration.resolvedConfiguration .resolvedArtifacts .collectEntries { [(it.name + '-version'): it.moduleVersion.id.version] } -} \ No newline at end of file +}