我正在遵循一些关于如何开始使用Spring Boot Camunda启动应用程序的说明。
https://camunda.github.io/camunda-bpm-spring-boot-starter/docs/current/index.html
根据这个链接,我应该可以在Maven中心找到2.0.0-SNAPSHOT,但我不能。
https://github.com/camunda/camunda-bpm-spring-boot-starter
Maven Central只有1.3.0版本。
https://mvnrepository.com/artifact/org.camunda.bpm.extension/camunda-bpm-spring-boot-starter
有人可以帮我解决这个问题。目前我唯一可以解决问题的方法是构建我从GitHub下载的整个camunda-bpm-spring-boot项目。
答案 0 :(得分:2)
要使用Camunda SpringBoot 2.0.0-SNAPSHOT,您必须将maven中央快照存储库添加到项目中
<repository>
<id>maven-central-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
有关2.0.0-SNAPSHOT的工件,请参阅https://github.com/dcos/cosmos/blob/master/cosmos-server/src/main/scala/com/mesosphere/cosmos/MarathonClient.scala#L20。您在旧位置找不到它们,因为groupId和artifactIds稍有变化。此外,还没有实际的2.0.0版本。