前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Spring Boot Version Compatibility

Spring Boot Version Compatibility

作者头像
季鸟猴
发布2022-11-14 19:39:55
2870
发布2022-11-14 19:39:55
举报
文章被收录于专栏:季鸟猴的分享季鸟猴的分享

Spring Boot Version Compatibility

Each version of the Camunda Spring Boot Starter is bound to a specific version of Camunda Platform and Spring Boot. Only these default combinations are recommended (and supported) by Camunda. Other combinations must be thoroughly tested before being used in production.

Heads Up

Starting with version 7.13.0, Camunda Platform and its compatible Spring Boot Starter always share the same version. Also, the Camunda Platform version used in the Spring Boot Starter doesn’t have to be overridden anymore. Simply pick the version of the Starter that resembles the version of Camunda Platform you want to use.

image
image
  • For these versions, use the following Maven coordinates:
代码语言:javascript
复制
<dependency>
  <groupId>org.camunda.bpm.extension</groupId>
  <artifactId>camunda-bpm-spring-boot-starter</artifactId>
  <version>1.x</version> <!-- set correct version here -->
</dependency>

** For these versions, use the following Maven coordinates:

代码语言:javascript
复制
<dependency>
  <groupId>org.camunda.bpm.extension.springboot</groupId>
  <artifactId>camunda-bpm-spring-boot-starter</artifactId>
  <version>2.x</version> <!-- set correct version here -->
</dependency>

*** For these versions, all listed Spring Boot versions are supported while the oldest one is used by default. If you want to use a newer supported version, configure dependencyManagement in your application, e.g. add the following when using Maven:

代码语言:javascript
复制
<dependencyManagement>
  <dependencies>
  ...
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-dependencies</artifactId>
      <version>2.x.y.RELEASE</version> <!-- set correct version here -->
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  ...
  </dependencies>
</dependencyManagement>

Q.E.D.

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Spring Boot Version Compatibility
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档