You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2021/04/21 08:54:30 UTC

[groovy] branch GROOVY_3_0_X updated (03e94b5 -> 918c41f)

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

paulk pushed a change to branch GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git.


    from 03e94b5  3_0_X should use the same bootstrap approach as master
     new 52e2609  GROOVY-10048: Bump Gradle to 6.8.3
     new b3e549d  add missing license headers
     new 918c41f  3_0_X should use the same bootstrap approach as master

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gradle.properties                         |  2 +-
 gradle/quality.gradle                     |  1 +
 gradle/wrapper/gradle-wrapper.properties  |  2 +-
 src/test/groovy/bugs/groovy9890/Face.java | 18 ++++++++++++++++++
 4 files changed, 21 insertions(+), 2 deletions(-)

[groovy] 03/03: 3_0_X should use the same bootstrap approach as master

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 918c41fac7b730aaf8d8441455791ad0510ea9f9
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Apr 21 18:54:19 2021 +1000

    3_0_X should use the same bootstrap approach as master
---
 gradle/quality.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gradle/quality.gradle b/gradle/quality.gradle
index f0b17f8..430d46a 100644
--- a/gradle/quality.gradle
+++ b/gradle/quality.gradle
@@ -197,6 +197,7 @@ rat {
                  '**/style.css', // MIT license as per NOTICE/LICENSE files
                  '**/jquery-2.1.1.min.js', // MIT license as per NOTICE/LICENSE files
                  '.classpath', '.project', '.settings/**', 'bin/**', // Eclipse files
+                 'bootstrap/settings.gradle', // empty file
     ]
 }
 

[groovy] 01/03: GROOVY-10048: Bump Gradle to 6.8.3

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 52e26096e7d20fad0716eb25be62abdcf52f2700
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Apr 21 18:44:14 2021 +1000

    GROOVY-10048: Bump Gradle to 6.8.3
---
 gradle.properties                        | 2 +-
 gradle/wrapper/gradle-wrapper.properties | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index ebc35d3..8ad0cf1 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -18,7 +18,7 @@ groovyVersion = 3.0.9-SNAPSHOT
 groovyBundleVersion = 3.0.9.SNAPSHOT
 
 binaryCompatibilityBaseline = 3.0.5
-gradle_version=6.8.1
+gradle_version=6.8.3
 
 groovyJUnit_ms=512m
 groovyJUnit_mx=2g
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 28ff446..442d913 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
 distributionBase=GRADLE_USER_HOME
 distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
 zipStoreBase=GRADLE_USER_HOME
 zipStorePath=wrapper/dists

[groovy] 02/03: add missing license headers

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b3e549d7741f6da70f180b0ef084ba2b7bcd8580
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Apr 21 18:20:44 2021 +1000

    add missing license headers
---
 src/test/groovy/bugs/groovy9890/Face.java | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/src/test/groovy/bugs/groovy9890/Face.java b/src/test/groovy/bugs/groovy9890/Face.java
index af8914b..126c2bc 100644
--- a/src/test/groovy/bugs/groovy9890/Face.java
+++ b/src/test/groovy/bugs/groovy9890/Face.java
@@ -1,3 +1,21 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you under the Apache License, Version 2.0 (the
+ *  "License"); you may not use this file except in compliance
+ *  with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing,
+ *  software distributed under the License is distributed on an
+ *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ *  KIND, either express or implied.  See the License for the
+ *  specific language governing permissions and limitations
+ *  under the License.
+ */
 package groovy.bugs.groovy9890;
 
 public interface Face {