From b52be6d04d1b3c2cdc0696bc0e712009cc97aecb Mon Sep 17 00:00:00 2001 From: rmorrise Date: Thu, 10 Jan 2019 13:52:04 -0500 Subject: [PATCH 1/3] Updated developers list. --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e4a5d0a..8e326a4 100644 --- a/build.gradle +++ b/build.gradle @@ -51,5 +51,6 @@ grailsPublish { } title = "grails-cascade-validation" desc = """This plugin establishes a 'cascade' constraint property for validateable objects. If "cascade:true" is set on a nested object, the nested object's validate() method will be invoked and the results will be reported as part of the parent object's validation.""" - developers = [rmorrise:"Russell Morrisey", sbglasius: "Søren Berg Glasius", asoftwareguy: "Eric Kelm", burtbeckwith: "Burt Beckwith"] + developers = [rmorrise:"Russell Morrisey", sbglasius: "Søren Berg Glasius", asoftwareguy: "Eric Kelm", burtbeckwith: "Burt Beckwith", + ctoestreich: "Christian Oestreich", virtualdogbert: "Virtualdogbert"] } From f9ac0106201eb75799d6bee1d36de59d85099aa6 Mon Sep 17 00:00:00 2001 From: rmorrise Date: Thu, 10 Jan 2019 13:55:20 -0500 Subject: [PATCH 2/3] Removed -SNAPSHOT from version. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8e326a4..239b33e 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { classpath "org.grails:grails-gradle-plugin:$grailsVersion" } } -version "3.0.1-SNAPSHOT" +version "3.0.0" group "org.grails.plugins" apply plugin: 'eclipse' From 4b4e11149761dc697efa9ce5f3a7145d698f32c7 Mon Sep 17 00:00:00 2001 From: rmorrise Date: Thu, 10 Jan 2019 14:03:54 -0500 Subject: [PATCH 3/3] Copied settings.gradle from Christian's fork --- settings.gradle | 1 + 1 file changed, 1 insertion(+) create mode 100644 settings.gradle diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..c3224f8 --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name = "cascade-validation"