如何从2.2.4升级到2.4.3

时间:2014-09-10 19:18:44

标签: grails

我正在尝试从2.2.4升级到2.4.3

最好的方法是什么?我对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'
}

进行更改后,我需要运行什么命令?我现在需要做出哪些更改,因为resources插件已替换为asset-pipeline

我还将app.grails.version=2.2.4中的application.properties更改为2.4.3

1 个答案:

答案 0 :(得分:0)

首先,我们实际上无法看到您所做的任何更改

  

我现在需要进行哪些更改,因为资源插件已被资产管道替换

您可以继续使用Grails 2.4.3中的资源插件,但如果您想迁移到资产管道,我建议您在Grails 2.4.3上稳定运行应用后执行此操作

  

进行更改后,我需要运行什么命令

grails test-app自动测试您的应用是否仍然有效。如果您没有进行任何测试,请运行grails run-app并手动测试。