1
0
mirror of synced 2026-07-19 09:35:12 +00:00
Files
spring-security/build.gradle
Josh Cummings 5c2f33c03b Update NodeJS to 24.15
This commit declares a NodeJS value whereas previously,
Antora would use the latest LTS version. When it updated to
Node 24.16, site production stopped, possibly due to
https://github.com/nodejs/node/commit/e95570c054.

Either way, it is helpful to have a pinned version in order
to stabilize builds, allowing us to update it in an orderly
fashion like other dependencies.

Closes gh-19206
2026-05-22 22:17:31 -06:00

13 lines
155 B
Groovy

plugins {
id 'base'
id 'org.antora' version '1.0.0'
}
node {
version = "24.15.0"
}
antora {
options = [clean: true, fetch: true, stacktrace: true]
}