dependency management - Grails Upgrade to 2.5.5 - Unresolved dependencies - groovy-all 2.4.5 -
i trying upgrade grails application 2.0.0 2.5.5, running unresolved dependencies groovy-all jar. dependency resolver in buildconfig.groovy set ivy. also, location %userprofile%/.grails/ivy-cache/org.codehaus.groovy contains groovy-all.jar of version 2.4.5
java set jdk7
exact error: org.codehaus.groovy#groovy-all;2.4.5: configuration not found in org.codehaus.groovy#groovy-all;2.4.5: 'master'. required org.grails#grails-core;2.5.5 compile
buildconfig.groovy
grails.project.dependency.resolver = "ivy" repositories { mavenrepo "link company specific repo" mavencentral() } plugins { runtime ":hibernate4:4.3.10" runtime ":jquery:1.7.1" runtime ":resources:1.1.5" runtime ":bubbling:1.5.1" runtime ":calendar:1.2.1" runtime ":code-coverage:1.1.6" runtime ":jsecurity:0.3" runtime ":tomcat:7.0.42" runtime ":webflow:1.3.7" runtime ":webtest:1.1.5.1" runtime ":yui:2.8.2.1" build ":tomcat:7.0.70" }
please help. let me know if additional details needed.
for upgrade version 2.5.5 add buildconfig dependencies line
compile 'org.codehaus.groovy:groovy-all:2.4.6'
this worked me.
Comments
Post a Comment