简体   繁体   中英

Maven repository for camunda 1.4.0-SNAPSHOT

I'm following some instructions here on how to get started with a Spring Boot Camunda start up application.

https://camunda.github.io/camunda-bpm-spring-boot-starter/docs/current/index.html

According to this link I should be able to find 2.0.0-SNAPSHOT on Maven central but I cannot.

https://github.com/camunda/camunda-bpm-spring-boot-starter

Maven central only has version 1.3.0.

https://mvnrepository.com/artifact/org.camunda.bpm.extension/camunda-bpm-spring-boot-starter

Can someone help me with this. At the moment the only way I can get things working is by building the whole camunda-bpm-spring-boot project that I downloaded from GitHub.

To use Camunda SpringBoot 2.0.0-SNAPSHOT, you have to add the maven central snapshot repository to your project like so

<repository>
  <id>maven-central-snapshots</id>
  <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  <snapshots>
    <enabled>true</enabled>
  </snapshots>
</repository>

See here for the artifacts of 2.0.0-SNAPSHOT. You don't find them under the old location because the groupId and artifactIds changed a bit. Also there is no actual 2.0.0 release yet.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM