如何在grails中解决此BuildConfig错误

时间:2014-08-27 12:28:50

标签: mysql grails

加载时出错 BuildConfig: Bad artifact coordinates mysql:mysql-connector-java-5.0.8.bin, expected format is <groupId>:<artifactId>[:<extension>[:<classifier>]]:<version> (Use --stacktrace to see the full trace)

这是我在尝试运行grails app

时遇到的错误

包含mysql connector的代码部分是

dependencies {
    // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.

     runtime 'mysql:mysql-connector-java-5.0.8'
}

1 个答案:

答案 0 :(得分:1)

用冒号替换版本号前面的短划线,即

dependencies {
    // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.

     runtime 'mysql:mysql-connector-java:5.0.8'
}
BTW,5.0.8很老了。除非您有特定原因要使用此版本,否则您应该使用更新版本,例如5.1.32