This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch v4 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 0b5c6bc9e785bbfecaae4a7d30e3f56f0ba70dc0 Author: Dan Haywood <[email protected]> AuthorDate: Wed Oct 8 10:19:24 2025 +0100 CAUSEWAY-3898: updates supplemental models --- .../modules/ROOT/pages/cutting-a-release.adoc | 7 ++++--- .../src/main/resources/supplemental-models.xml | 23 ++++++++++++++++++---- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/antora/components/comguide/modules/ROOT/pages/cutting-a-release.adoc b/antora/components/comguide/modules/ROOT/pages/cutting-a-release.adoc index 325e6cc168b..7b0049e6251 100644 --- a/antora/components/comguide/modules/ROOT/pages/cutting-a-release.adoc +++ b/antora/components/comguide/modules/ROOT/pages/cutting-a-release.adoc @@ -26,7 +26,7 @@ They should work on Linux and MacOS; for Windows, use mSysGit. [IMPORTANT] ==== -The release process should be performed on Java 17. +The release process should be performed on Java 21. ==== [IMPORTANT] @@ -112,9 +112,10 @@ This is stored in the `src/main/appended-resources/supplemental-models.xml` file [source,bash,subs="attributes+"] ---- mvnd -Dgithub clean install -T1C -DskipTests # <.> -mvnd -Dgithub license:download-licenses # <.> +mvnd -Dgithub license:download-licenses \ + -Dlicense.connectTimeout=500 # <.> -groovy scripts/checkmissinglicenses.groovy # <.> +groovy scripts/checkmissinglicenses.groovy # <.> ---- <.> builds the framework. + diff --git a/supplemental-model/src/main/resources/supplemental-models.xml b/supplemental-model/src/main/resources/supplemental-models.xml index 777875eaf34..275febc9019 100644 --- a/supplemental-model/src/main/resources/supplemental-models.xml +++ b/supplemental-model/src/main/resources/supplemental-models.xml @@ -31,7 +31,7 @@ <project> <groupId>org.webjars.npm</groupId> <artifactId>pdfjs-dist</artifactId> - <version>5.2.133</version> + <version>5.4.149</version> <name>PDF.js</name> <licenses> <license> @@ -61,7 +61,7 @@ <project> <groupId>org.webjars.npm</groupId> <artifactId>bootstrap-italia</artifactId> - <version>2.14.0</version> + <version>2.16.0</version> <name>bootstrap-italia</name> <licenses> <license> @@ -241,7 +241,7 @@ <project> <groupId>org.webjars</groupId> <artifactId>momentjs</artifactId> - <version>2.30.1</version> + <version>2.30.1-1</version> <name>Moment.js</name> <licenses> <license> @@ -286,7 +286,7 @@ <project> <groupId>org.webjars.npm</groupId> <artifactId>eonasdan__tempus-dominus</artifactId> - <version>6.10.3</version> + <version>6.10.4</version> <name>tempus-dominus</name> <licenses> <license> @@ -312,4 +312,19 @@ </project> </supplement> + <supplement> + <project> + <groupId>org.webjars</groupId> + <artifactId>datatables</artifactId> + <version>2.3.2</version> + <name>Datatables</name> + <licenses> + <license> + <name>MIT License</name> + <url>https://github.com/DataTables/DataTablesSrc</url> + </license> + </licenses> + </project> + </supplement> + </supplementalDataModels>
