diff --git a/README.md b/README.md index 0be2131..9db78dc 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ To use this plugin, add the plugin to `build.gradle`: ```groovy dependencies { //CSC custom plugin for 'cascade' constraint - compile "io.github.gpc:grails-cascade-validation:4.0.0" + compile "io.github.gpc:cascade-validation:4.0.0" } ``` diff --git a/build.gradle b/build.gradle index f955b4a..12ada33 100644 --- a/build.gradle +++ b/build.gradle @@ -65,7 +65,7 @@ publishing { publications { maven(MavenPublication) { groupId = project.group - artifactId = 'grails-cascade-validation' + artifactId = 'cascade-validation' version = project.version from components.java @@ -73,7 +73,7 @@ publishing { artifact javadocJar pom { - name = 'grails-cascade-validation' + name = 'cascade-validation' description = """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.""" url = 'https://github.com/gpc/grails-cascade-validation' licenses { diff --git a/settings.gradle b/settings.gradle index eacf6b0..c3224f8 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1 @@ -rootProject.name = "grails-cascade-validation" +rootProject.name = "cascade-validation"