Skip to content

Commit

Permalink
Fix consul docs (#7398)
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-cho committed Aug 6, 2023
1 parent 9e8b18b commit e11c86f
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions docs/modules/consul.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,20 @@ test how your application behaves with Consul by writing different test scenario

Add the following dependency to your `pom.xml`/`build.gradle` file:

```groovy tab='Gradle'
testImplementation "org.testcontainers:consul:{{latest_version}}"
```

```xml tab='Maven'
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>consul</artifactId>
<version>{{latest_version}}</version>
<scope>test</scope>
</dependency>
```
=== "Gradle"
```groovy
testImplementation "org.testcontainers:consul:{{latest_version}}"
```

=== "Maven"
```xml
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>consul</artifactId>
<version>{{latest_version}}</version>
<scope>test</scope>
</dependency>
```

See [AUTHORS](https://raw.githubusercontent.com/testcontainers/testcontainers-java/main/modules/consul/AUTHORS) for contributors.

0 comments on commit e11c86f

Please sign in to comment.