【发布时间】:2019-12-24 05:18:27
【问题描述】:
我在使用 camunda 企业版配置 springboot 时遇到问题 项目无法解决“camunda-bpm-spring-boot-starter-webapp-ee”的依赖关系 任何人都可以建议,如果我错过了配置
请找到以下配置
在 pom.xml 中
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.10.RELEASE</version>
<relativePath />
</parent>
<properties>
<java.version>8</java.version>
<camunda.version>3.3.6</camunda.version>
</properties>
<groupId>com.example.workflow</groupId>
<artifactId>my-project-camunda</artifactId>
<version>1.0.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
<version>${camunda.version}</version>
</dependency>
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-webapp-ee</artifactId>
<version>${camunda.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>camunda-bpm-nexus-ee</id>
<name>camunda-bpm-nexus-ee</name>
<url>https://app.camunda.com/nexus/content/repositories/camunda-bpm-ee</url>
</repository>
<repository>
<id>camunda-bpm-nexus</id>
<name>camunda-bpm-nexus</name>
<url>https://app.camunda.com/nexus/content/groups/public</url>
</repository>
</repositories>
</project>
在 src/main/resources 中
camunda-license.txt
它包含许可证密钥
【问题讨论】:
-
您是否提供了 nexus-ee 的凭据?您获得了用于 ee 下载的用户/密码,并且必须为 repo 配置这些凭据。
标签: java spring-boot camunda