Skip to content

Commit da37583

Browse files
committed
Vector for plugin is io.github.com:cascade-validation:4.0.0 instead of the more verbose grails-cascade-validation
1 parent 4075201 commit da37583

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To use this plugin, add the plugin to `build.gradle`:
1010
```groovy
1111
dependencies {
1212
//CSC custom plugin for 'cascade' constraint
13-
compile "io.github.gpc:grails-cascade-validation:4.0.0"
13+
compile "io.github.gpc:cascade-validation:4.0.0"
1414
}
1515
```
1616

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ publishing {
6565
publications {
6666
maven(MavenPublication) {
6767
groupId = project.group
68-
artifactId = 'grails-cascade-validation'
68+
artifactId = 'cascade-validation'
6969
version = project.version
7070

7171
from components.java
7272
artifact sourcesJar
7373
artifact javadocJar
7474

7575
pom {
76-
name = 'grails-cascade-validation'
76+
name = 'cascade-validation'
7777
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."""
7878
url = 'https://github.com/gpc/grails-cascade-validation'
7979
licenses {

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = "grails-cascade-validation"
1+
rootProject.name = "cascade-validation"

0 commit comments

Comments
 (0)