From 40cd138bf4e81d9d926e6f3c77d3a72b11064b88 Mon Sep 17 00:00:00 2001 From: "Meggle (Sebastian Bathke)" Date: Mon, 21 Oct 2024 16:58:19 +0200 Subject: [PATCH 1/2] fix: remove unnecessary identity repo setup --- .../spring-zeebe-sdk/getting-started.md | 20 ++-------------- .../spring-zeebe-sdk/getting-started.md | 24 ++++--------------- .../spring-zeebe-sdk/getting-started.md | 20 ++-------------- 3 files changed, 8 insertions(+), 56 deletions(-) diff --git a/docs/apis-tools/spring-zeebe-sdk/getting-started.md b/docs/apis-tools/spring-zeebe-sdk/getting-started.md index 893e93de32..df9869576b 100644 --- a/docs/apis-tools/spring-zeebe-sdk/getting-started.md +++ b/docs/apis-tools/spring-zeebe-sdk/getting-started.md @@ -15,29 +15,13 @@ This project allows you to leverage Zeebe APIs ([gRPC](/apis-tools/zeebe-api/grp ## Add the Spring Zeebe SDK to your project -Add the following repository and Maven dependency to your Spring Boot Starter project: - -```xml - - - - true - - - false - - identity - Camunda Identity - https://artifacts.camunda.com/artifactory/camunda-identity/ - - -``` +Add the following Maven dependency to your Spring Boot Starter project, replacing `x` with the latest patch level available: ```xml io.camunda spring-boot-starter-camunda-sdk - 8.6.3 + 8.6.x ``` diff --git a/versioned_docs/version-8.5/apis-tools/spring-zeebe-sdk/getting-started.md b/versioned_docs/version-8.5/apis-tools/spring-zeebe-sdk/getting-started.md index 3fd74f7008..636051a7d8 100644 --- a/versioned_docs/version-8.5/apis-tools/spring-zeebe-sdk/getting-started.md +++ b/versioned_docs/version-8.5/apis-tools/spring-zeebe-sdk/getting-started.md @@ -14,29 +14,13 @@ This project allows you to leverage Zeebe APIs ([gRPC](/apis-tools/zeebe-api/grp ## Add the Spring Zeebe SDK to your project -Add the following repository and Maven dependency to your Spring Boot Starter project: - -```xml - - - - true - - - false - - identity - Camunda Identity - https://artifacts.camunda.com/artifactory/camunda-identity/ - - -``` +Add the following Maven dependency to your Spring Boot Starter project, replacing `x` with the latest patch level available: ```xml - io.camunda - spring-boot-starter-camunda-sdk - 8.5.0 + io.camunda + spring-boot-starter-camunda-sdk + 8.5.x ``` diff --git a/versioned_docs/version-8.6/apis-tools/spring-zeebe-sdk/getting-started.md b/versioned_docs/version-8.6/apis-tools/spring-zeebe-sdk/getting-started.md index 893e93de32..df9869576b 100644 --- a/versioned_docs/version-8.6/apis-tools/spring-zeebe-sdk/getting-started.md +++ b/versioned_docs/version-8.6/apis-tools/spring-zeebe-sdk/getting-started.md @@ -15,29 +15,13 @@ This project allows you to leverage Zeebe APIs ([gRPC](/apis-tools/zeebe-api/grp ## Add the Spring Zeebe SDK to your project -Add the following repository and Maven dependency to your Spring Boot Starter project: - -```xml - - - - true - - - false - - identity - Camunda Identity - https://artifacts.camunda.com/artifactory/camunda-identity/ - - -``` +Add the following Maven dependency to your Spring Boot Starter project, replacing `x` with the latest patch level available: ```xml io.camunda spring-boot-starter-camunda-sdk - 8.6.3 + 8.6.x ``` From 6343c54afae13b5b6d4d09fef3b8a7633c80129c Mon Sep 17 00:00:00 2001 From: "Meggle (Sebastian Bathke)" Date: Mon, 21 Oct 2024 17:03:43 +0200 Subject: [PATCH 2/2] fix: inline spring sdk maven setup to general Get Started Guide --- docs/guides/getting-started-java-spring.md | 28 +++---------------- .../guides/getting-started-java-spring.md | 28 +++---------------- .../guides/getting-started-java-spring.md | 28 +++---------------- 3 files changed, 12 insertions(+), 72 deletions(-) diff --git a/docs/guides/getting-started-java-spring.md b/docs/guides/getting-started-java-spring.md index 225a4b677b..b6fe074f3f 100644 --- a/docs/guides/getting-started-java-spring.md +++ b/docs/guides/getting-started-java-spring.md @@ -113,33 +113,13 @@ To implement a service task, take the following steps: ### Configure Spring Boot Starter -See our documentation on [adding the Spring Zeebe SDK to your project](/apis-tools/spring-zeebe-sdk/getting-started.md#add-the-spring-zeebe-sdk-to-your-project) for more details, also described below: - -1. Copy the following code snippet into the `pom.xml` file of your Spring project, below properties and above dependencies: - -```xml - - - - true - - - false - - identity - Camunda Identity - https://artifacts.camunda.com/artifactory/camunda-identity/ - - -``` - -2. Add the following dependency to your `pom.xml` file, as a child of the `` element: +Add the following Maven dependency to your Spring Boot Starter project, replacing `x` with the latest patch level available: ```xml - io.camunda - spring-boot-starter-camunda-sdk - 8.6.3 + io.camunda + spring-boot-starter-camunda-sdk + 8.6.x ``` diff --git a/versioned_docs/version-8.5/guides/getting-started-java-spring.md b/versioned_docs/version-8.5/guides/getting-started-java-spring.md index 7f28e44c76..f27acb4c3b 100644 --- a/versioned_docs/version-8.5/guides/getting-started-java-spring.md +++ b/versioned_docs/version-8.5/guides/getting-started-java-spring.md @@ -116,33 +116,13 @@ To implement a service task, take the following steps: ### Configure Spring Boot Starter -See our documentation on [adding the Spring Zeebe SDK to your project](/apis-tools/spring-zeebe-sdk/getting-started.md#add-the-spring-zeebe-sdk-to-your-project) for more details, also described below: - -1. Copy the following code snippet into the `pom.xml` file of your Spring project, below properties and above dependencies: - -```xml - - - - true - - - false - - identity - Camunda Identity - https://artifacts.camunda.com/artifactory/camunda-identity/ - - -``` - -2. Add the following dependency to your `pom.xml` file, as a child of the `` element: +Add the following Maven dependency to your Spring Boot Starter project, replacing `x` with the latest patch level available: ```xml - io.camunda - spring-boot-starter-camunda-sdk - 8.5.0 + io.camunda + spring-boot-starter-camunda-sdk + 8.5.x ``` diff --git a/versioned_docs/version-8.6/guides/getting-started-java-spring.md b/versioned_docs/version-8.6/guides/getting-started-java-spring.md index 58f628a389..fc92c74232 100644 --- a/versioned_docs/version-8.6/guides/getting-started-java-spring.md +++ b/versioned_docs/version-8.6/guides/getting-started-java-spring.md @@ -113,33 +113,13 @@ To implement a service task, take the following steps: ### Configure Spring Boot Starter -See our documentation on [adding the Spring Zeebe SDK to your project](/apis-tools/spring-zeebe-sdk/getting-started.md#add-the-spring-zeebe-sdk-to-your-project) for more details, also described below: - -1. Copy the following code snippet into the `pom.xml` file of your Spring project, below properties and above dependencies: - -```xml - - - - true - - - false - - identity - Camunda Identity - https://artifacts.camunda.com/artifactory/camunda-identity/ - - -``` - -2. Add the following dependency to your `pom.xml` file, as a child of the `` element: +Add the following Maven dependency to your Spring Boot Starter project, replacing `x` with the latest patch level available: ```xml - io.camunda - spring-boot-starter-camunda-sdk - 8.6.3 + io.camunda + spring-boot-starter-camunda-sdk + 8.6.x ```