grails - How to upgrade from 2.2.4 to 2.4.3 -
i trying upgrade 2.2.4
2.4.3
what best way this? i've made following changes buildconfig.groovy
plugins { runtime ':hibernate4:4.3.5.2' runtime ':jquery:1.11.0.2' runtime ":jquery-ui:1.8.24" //runtime ":resources:1.2" runtime ':twitter-bootstrap:3.2.0.2' compile ':spring-security-core:2.0-rc4' compile ":rabbitmq:1.0.0" compile (":events-push:1.0.m7") { excludes "resources" } compile ":rest-client-builder:1.0.3" test(":spock:0.7") { exclude "spock-grails-support" } build ':tomcat:7.0.52.1' runtime ':database-migration:1.4.0' compile ':cache:1.1.3' compile ":pretty-time:0.3" compile ":tagcloud:0.3" compile ':asset-pipeline:1.8.3' }
after making changes command need run? there changes need make since resources
plugin replaced asset-pipeline
i've changed app.grails.version=2.2.4
in application.properties
2.4.3
firstly, can't see of changes you've made.
are there changes need make since resources plugin replaced asset-pipeline
you can continue using resources plugin in grails 2.4.3, if want migrate asset-pipeline, i'd advise after have app running stably on grails 2.4.3.
after making changes command need run
grails test-app
automatically test if app still working. if don't have tests, run grails run-app
, manually test it.
Comments
Post a Comment