Skip to content

Commit

Permalink
add language to codeblock (#4451)
Browse files Browse the repository at this point in the history
  • Loading branch information
akeller authored Oct 11, 2024
1 parent 57afb79 commit dcc4378
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
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

0 comments on commit dcc4378

Please sign in to comment.