Skip to content

Commit cedbc5f

Browse files
committed
Update README
1 parent df4be1a commit cedbc5f

File tree

1 file changed

+5
-18
lines changed

1 file changed

+5
-18
lines changed

README.md

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![CI](https://github.com/dajudge/kafkaproxy/actions/workflows/build.yaml/badge.svg)](https://github.com/dajudge/kindcontainer/actions/workflows/build.yaml)
2-
2+
[![Maven central](https://img.shields.io/maven-central/v/com.dajudge.kindcontainer/kindcontainer)](https://search.maven.org/artifact/com.dajudge.kindcontainer/kindcontainer)
33

44
kindcontainer
55
---
@@ -9,25 +9,16 @@ clusters for unit/integration testing.
99

1010
## Usage
1111
### Add dependency
12-
First you need to add the kindcontainer dependency to your build. Kindcontainer is available as a [bintray repository](https://bintray.com/dajudge/kindcontainer/kindcontainer).
12+
First you need to add the kindcontainer dependency to your build. Kindcontainer is available on maven central.
1313
#### Maven
1414
Add the bintray repo and the kindcontainer dependency:
1515
```xml
1616
<project>
17-
<!-- kindcontainer is not on maven central, yet -->
18-
<repositories>
19-
<repository>
20-
<id>bintray-kindcontainer</id>
21-
<name>The kindcontainer bintray repo</name>
22-
<url>https://dl.bintray.com/dajudge/kindcontainer</url>
23-
</repository>
24-
</repositories>
25-
2617
<dependencies>
2718
<dependency>
2819
<groupId>com.dajudge.kindcontainer</groupId>
2920
<artifactId>kindcontainer</artifactId>
30-
<version>${kindcontainer.version}</version>
21+
<version>0.0.13</version>
3122
<scope>test</scope>
3223
</dependency>
3324
</dependencies>
@@ -38,16 +29,12 @@ Add the bintray repo and the kindcontainer dependency:
3829
Add the bintray repo and the kindcontainer dependency:
3930
```groovy
4031
repositories {
41-
// kindcontainer is not on Maven central, yet
42-
maven {
43-
url "https://dl.bintray.com/dajudge/kindcontainer"
44-
}
45-
// But it has some transitive dependencies there
32+
// Since 0.0.13 kindcontainer is on maven central
4633
mavenCentral()
4734
}
4835
4936
dependencies {
50-
testImplementation "com.dajudge.kindcontainer:kindcontainer:${kindcontainerVersion}"
37+
testImplementation "com.dajudge.kindcontainer:kindcontainer:0.0.13"
5138
}
5239
```
5340
### Use in JUnit test

0 commit comments

Comments
 (0)