加载时出错
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'
}
答案 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