mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
Prior to this commit, the `antora` Gradle task silently failed to build the reference documentation, since Antora uses the latest LTS release for Node.js by default, and the latest LTS apparently does not work for us.
13 lines
155 B
Groovy
13 lines
155 B
Groovy
plugins {
|
|
id 'base'
|
|
id 'org.antora' version '1.0.0'
|
|
}
|
|
|
|
antora {
|
|
options = [clean: true, fetch: true, stacktrace: true]
|
|
}
|
|
|
|
node {
|
|
version = '24.15.0'
|
|
}
|