我正在尝试使用Grails 3运行Camunda Community Edition。这是Maven坐标:
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-bom</artifactId>
<version>7.9.0</version>
<scope>import</scope>
<type>pom</type>
</dependency>我尝试在Gradle语言中像这样在build.gradle文件中翻译这个坐标:
dependencies {
compile "org.camunda.bpm:camunda-bom:7.9.0"
}它会进行编译,但是当我尝试导入camunda类时,它看不到它们。这是我的配置
Grails Version: 3.2.6
| Groovy Version: 2.4.7
| JVM Version: 1.8.0_181
Gradle 3.0欢迎任何建议。谢谢。
发布于 2018-08-09 04:48:08
您正在尝试导入BOM,而不是简单的库,因此请尝试像grails那样导入它。请查看http://docs.grails.org/latest/guide/commandLine.html了解如何执行此操作
发布于 2021-07-25 01:06:57
Camunda不支持grails运行时。有关支持的运行时,请参阅此页面https://docs.camunda.org/manual/7.15/introduction/supported-environments/
https://stackoverflow.com/questions/51751952
复制相似问题