Skip to content

Commit 90feaa7

Browse files
committed
Added license info and svn plugin things for the release plugin (weird dependency issues on my end).
1 parent feb1c1d commit 90feaa7

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

JqueryValidationUiGrailsPlugin.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
class JqueryValidationUiGrailsPlugin {
2323
// the plugin version
24-
def version = "1.2.3-SNAPSHOT"
24+
def version = "1.2.4-SNAPSHOT"
2525
// the version or versions of Grails the plugin is designed for
2626
def grailsVersion = "1.2.2 > *"
2727
// the other plugins this plugin depends on
@@ -31,6 +31,7 @@ class JqueryValidationUiGrailsPlugin {
3131
"grails-app/views/error.gsp"
3232
]
3333

34+
def license = "APACHE"
3435
def author = "Lim Chee Kin"
3536
def authorEmail = "[email protected]"
3637
// Additional developers

grails-app/conf/BuildConfig.groovy

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ grails.project.dependency.resolution = {
3737
build("xom:xom:1.2.5") {
3838
export = false
3939
}
40+
compile("org.tmatesoft.svnkit:svnkit:1.3.5") {
41+
excludes "jna", "trilead-ssh2", "sqljet"
42+
export = false
43+
}
4044
}
4145
plugins {
4246
compile(":constraints:0.6.0")
@@ -53,9 +57,12 @@ grails.project.dependency.resolution = {
5357
export = false
5458
excludes "xom"
5559
}
56-
build(":release:1.0.0") {
60+
build(":release:1.0.1") {
61+
export = false
62+
excludes "svn"
63+
}
64+
build(':svn:1.0.2') {
5765
export = false
58-
excludes "xom"
5966
}
6067
}
6168
}

0 commit comments

Comments
 (0)