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 2019/12/19 18:11:19 UTC

[groovy] branch master updated (a553168 -> 6f0e491)

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

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


    from a553168  GROOVY-6095, GROOVY-9338: check a wildcard's bounds instead of base type
     new 9664724  add serialVersionUID
     new 6f0e491  base binary compatibility report for 4 on 3.0 and workaround for gradle plugin bug (japicmp plugin needs guava?)

The 2 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:
 .../groovy/groovy/cli/CliBuilderException.groovy   |  4 +++-
 subprojects/binary-compatibility/build.gradle      | 23 ++++++++++++++++------
 2 files changed, 20 insertions(+), 7 deletions(-)


[groovy] 02/02: base binary compatibility report for 4 on 3.0 and workaround for gradle plugin bug (japicmp plugin needs guava?)

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

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

commit 6f0e49193ca3a114d4d13c54172d33039c3a0e24
Author: Paul King <pa...@asert.com.au>
AuthorDate: Fri Dec 20 02:33:24 2019 +1000

    base binary compatibility report for 4 on 3.0 and workaround for gradle plugin bug (japicmp plugin needs guava?)
---
 subprojects/binary-compatibility/build.gradle | 23 +++++++++++++++++------
 1 file changed, 17 insertions(+), 6 deletions(-)

diff --git a/subprojects/binary-compatibility/build.gradle b/subprojects/binary-compatibility/build.gradle
index 3428201..826af9f 100644
--- a/subprojects/binary-compatibility/build.gradle
+++ b/subprojects/binary-compatibility/build.gradle
@@ -18,9 +18,22 @@
  */
 import me.champeau.gradle.japicmp.JapicmpTask
 
-plugins {
-    id "me.champeau.gradle.japicmp" version "0.2.8"
+//plugins {
+//    id "me.champeau.gradle.japicmp" version "0.2.8"
+//}
+buildscript {
+    repositories {
+        maven {
+            url "https://plugins.gradle.org/m2/"
+        }
+    }
+
+    dependencies {
+        classpath 'me.champeau.gradle:japicmp-gradle-plugin:0.2.8'
+        classpath 'com.google.guava:guava:27.0-jre'
+    }
 }
+apply plugin: 'me.champeau.gradle.japicmp'
 
 def checkBinaryCompatibility = tasks.register("checkBinaryCompatibility") {
     description = "Generates binary compatibility reports"
@@ -32,12 +45,10 @@ tasks.check {
 
 // for comparing between versions with different modules, set excludeModules to differing modules, e.g.
 Set excludeModules = [
-        "groovy-cli-picocli", "groovy-cli-commons", "groovy-dateutil", "groovy-datetime", "groovy-jaxb",
-        "groovy-macro", "groovy-json-direct", "groovy-test-junit5", "groovy-yaml", "performance", "tests-vm8",
-        "binary-compatibility"
+        "performance", "tests-vm8", "binary-compatibility"
 ]
 
-def compatibilityBaselineVersion = "2.4.15"
+def compatibilityBaselineVersion = "3.0.0-rc-2"
 
 def thisProject = project
 


[groovy] 01/02: add serialVersionUID

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

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

commit 966472452d86cd7b29293e5481a1a6488a046b39
Author: Paul King <pa...@asert.com.au>
AuthorDate: Fri Dec 20 03:56:31 2019 +1000

    add serialVersionUID
---
 src/main/groovy/groovy/cli/CliBuilderException.groovy | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/main/groovy/groovy/cli/CliBuilderException.groovy b/src/main/groovy/groovy/cli/CliBuilderException.groovy
index 84a9438..7bd8648 100644
--- a/src/main/groovy/groovy/cli/CliBuilderException.groovy
+++ b/src/main/groovy/groovy/cli/CliBuilderException.groovy
@@ -21,4 +21,6 @@ package groovy.cli
 import groovy.transform.InheritConstructors
 
 @InheritConstructors
-class CliBuilderException extends RuntimeException { }
+class CliBuilderException extends RuntimeException {
+    private static final long serialVersionUID = 3996705753888714632L;
+}