Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add language to codeblock in Java Spring GSG #4451

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/guides/getting-started-java-spring.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ See our documentation on [adding the Spring Zeebe SDK to your project](/apis-too

1. Copy the following code snippet into the `pom.xml` file of your Spring project, below properties and above dependencies:

```
```xml
<repositories>
<repository>
<releases>
Expand All @@ -135,7 +135,7 @@ See our documentation on [adding the Spring Zeebe SDK to your project](/apis-too

2. Add the following dependency to your `pom.xml` file, as a child of the `<dependencies>` element:

```
```xml
<dependency>
<groupId>io.camunda</groupId>
<artifactId>spring-boot-starter-camunda-sdk</artifactId>
Expand All @@ -147,7 +147,7 @@ See our documentation on [adding the Spring Zeebe SDK to your project](/apis-too

Open your `src/main/resources/application.yaml` file, and paste the following snippet to connect to the Self-Managed Zeebe broker:

```
```yaml
camunda:
client:
mode: self-managed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ See our documentation on [adding the Spring Zeebe SDK to your project](/apis-too

1. Copy the following code snippet into the `pom.xml` file of your Spring project, below properties and above dependencies:

```
```xml
<repositories>
<repository>
<releases>
Expand All @@ -138,7 +138,7 @@ See our documentation on [adding the Spring Zeebe SDK to your project](/apis-too

2. Add the following dependency to your `pom.xml` file, as a child of the `<dependencies>` element:

```
```xml
<dependency>
<groupId>io.camunda</groupId>
<artifactId>spring-boot-starter-camunda-sdk</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ See our documentation on [adding the Spring Zeebe SDK to your project](/apis-too

1. Copy the following code snippet into the `pom.xml` file of your Spring project, below properties and above dependencies:

```
```xml
<repositories>
<repository>
<releases>
Expand All @@ -135,7 +135,7 @@ See our documentation on [adding the Spring Zeebe SDK to your project](/apis-too

2. Add the following dependency to your `pom.xml` file, as a child of the `<dependencies>` element:

```
```xml
<dependency>
<groupId>io.camunda</groupId>
<artifactId>spring-boot-starter-camunda-sdk</artifactId>
Expand All @@ -147,7 +147,7 @@ See our documentation on [adding the Spring Zeebe SDK to your project](/apis-too

Open your `src/main/resources/application.yaml` file, and paste the following snippet to connect to the Self-Managed Zeebe broker:

```
```yaml
camunda:
client:
mode: self-managed
Expand Down
Loading