This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 605e70f  bump dependencies
605e70f is described below

commit 605e70fe620fd80967a8b46acbd1c50a0e2b3075
Author: Paul King <[email protected]>
AuthorDate: Thu Feb 8 18:34:39 2024 +1000

    bump dependencies
---
 build.gradle                                             | 4 ++--
 generator/build.gradle                                   | 2 +-
 generator/src/main/groovy/generator/SiteGenerator.groovy | 4 ++--
 site-dev/build.gradle                                    | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/build.gradle b/build.gradle
index 7a1105e..af6c366 100644
--- a/build.gradle
+++ b/build.gradle
@@ -22,13 +22,13 @@ buildscript {
         mavenCentral()
     }
     dependencies {
-        classpath 'org.apache.ant:ant:1.10.13'
+        classpath 'org.apache.ant:ant:1.10.14'
         classpath 'com.yahoo.platform.yui:yuicompressor:2.4.8'
     }
 }
 
 plugins {
-    id 'com.github.ben-manes.versions' version '0.45.0'
+    id 'com.github.ben-manes.versions' version '0.51.0'
 }
 
 allprojects {
diff --git a/generator/build.gradle b/generator/build.gradle
index bdbff8f..13c22e1 100644
--- a/generator/build.gradle
+++ b/generator/build.gradle
@@ -24,7 +24,7 @@ repositories {
 }
 
 dependencies {
-    ext.groovyVersion = '3.0.14'
+    ext.groovyVersion = '3.0.20'
     ext.asciidocVersion = '2.5.7'
     implementation "org.codehaus.groovy:groovy:$groovyVersion"
     implementation "org.codehaus.groovy:groovy-dateutil:$groovyVersion"
diff --git a/generator/src/main/groovy/generator/SiteGenerator.groovy 
b/generator/src/main/groovy/generator/SiteGenerator.groovy
index 1a3539d..5a2bddd 100644
--- a/generator/src/main/groovy/generator/SiteGenerator.groovy
+++ b/generator/src/main/groovy/generator/SiteGenerator.groovy
@@ -264,8 +264,8 @@ class SiteGenerator {
             def groovyMinorVersionInTitle = 
v.structuredDoctitle.combined.findAll(/(?i)(groovy \d[.]\d+)/)
             groovyMinorVersionInTitle?.each {keywords[k] << it }
         }
-        def related = [:].withDefault{ [:] }
-        [blogList.keySet(), blogList.keySet()].combinations { one, two ->
+        Map<String, Map<String, Integer>> related = [:].withDefault{ [:] }
+        [blogList.keySet(), blogList.keySet()].eachCombination { String one, 
String two ->
             if (one != two) {
                 related[one][two] = 
keywords[one].intersect(keywords[two]).size()
             }
diff --git a/site-dev/build.gradle b/site-dev/build.gradle
index 3c5e604..eb35f92 100644
--- a/site-dev/build.gradle
+++ b/site-dev/build.gradle
@@ -26,7 +26,7 @@ import util.CheckLinks
 
 plugins {
     id 'base'                  // common lifecycle tasks and artifact types
-    id 'org.ajoberstar.grgit' version '5.0.0' // to publish website to asf-git 
branch
+    id 'org.ajoberstar.grgit' version '5.2.1' // to publish website to asf-git 
branch
 }
 
 ext {

Reply via email to