我周围有没有可行的例子?我下载了这个
http://www.it-jw.com/grails/birt-report-test_0.5.zip从这里http://grails.org/plugin/birt-report
但总是给我错误
。当我浏览http://repo1.maven.org/maven2/org/时,它说:
我尝试在lib / classpath中手动添加所有jar,但是没有用。我以前从未做过Birt集成。除了上面的链接,除了基础教程之外,它也很棒。或者至少让我知道在我已经筋疲力尽的情况下如何运行该项目。谢谢
最佳答案
我可以通过修改buildConfig.groovy文件来运行它。
dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
// runtime 'mysql:mysql-connector-java:5.1.5'
compile 'org.eclipse.birt.runtime:org.eclipse.core.runtime:3.10.0.v20140318-2214'
compile('org.eclipse.birt.runtime:org.eclipse.birt.runtime:4.4.1') {
excludes 'flute', 'eclipse.core.runtime', 'xmlbeans'
}
runtime 'com.h2database:h2:1.4.185'
}
//commented out all the plugins{}
关于grails - birt集成的grails错误无法解决依赖关系,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28066829/