2016-11-14 75 views
0

我在這裏關於如何開始使用Spring Boot Camunda啓動應用程序的一些說明。Camunda 1.4.0-SNAPSHOT的Maven倉庫

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項目。

+1

顯然,他們剛剛更新了他們的文檔,但實際上並未發佈新版本。 Maven的當前版本是1.3.0 – Strelok

+0

謝謝。只要確保我不會發瘋。 – Richie

回答

2

要使用Camunda SpringBoot 2.0.0快照,則必須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的文物見here。您在舊位置下找不到它們,因爲groupId和artifactIds更改了一些。還沒有實際的2.0.0版本。

+0

我只是在2.0.0-SNAPSHOT上加上了一個「謹慎」的標籤:如果你願意幫助測試你當然可以使用它,但是它正處於大量開發中,重構的主題並且不推薦用於「我需要一個穩定的平臺「項目。預計在12月初發布2.0.0。 –

+0

更新:同時2.0.0已經在maven中心發佈! –