Skip to content

Commit

Permalink
Vector for plugin is io.github.com:cascade-validation:4.0.0 instead o…
Browse files Browse the repository at this point in the history
…f the more verbose grails-cascade-validation
  • Loading branch information
sbglasius committed Dec 5, 2021
1 parent 4075201 commit da37583
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ publishing {
publications {
maven(MavenPublication) {
groupId = project.group
artifactId = 'grails-cascade-validation'
artifactId = 'cascade-validation'
version = project.version

from components.java
artifact sourcesJar
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 {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = "grails-cascade-validation"
rootProject.name = "cascade-validation"

0 comments on commit da37583

Please sign in to comment.