mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
131ae59724
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'
|
|
}
|