limcheekin / jquery-validation-ui

JQuery Validation UI Plugin - Client Side Validation without writing JavaScript
http://limcheekin.github.io/jquery-validation-ui/
Apache License 2.0
20 stars 18 forks source link

Maven POM file has jquery 1.7.2 hard dependency in it #21

Open mgkimsal opened 11 years ago

mgkimsal commented 11 years ago

This is causing conflict with jquery 1.8.3 installed. I've no idea where/how the POM would have that hard dependency in it - I don't see anything in the plugin code that specifies a jquery dependency.

org.grails.plugins jquery 1.7.2 zip runtime xml-apis xml-apis
limcheekin commented 11 years ago

Sorry for late response. I think the hard dependency is in it's dependent jquery-validation plugin.

FeaRiTail commented 11 years ago

Using such tag in my BuildConfig.groovy seems to work fine with a jQuery 1.8.3 core and the latest 1.4.4 validation-ui plugin:

    runtime ":jquery:1.8.3"
    compile ":jquery-ui:1.8.24"
    compile(":jquery-validation-ui:1.4.4"){
        excludes "jquery"
    }

...

But I agree with mgkimsal: the dependencies should be updated in the plugins ;)

HTH,

Tom