@@ -28,9 +28,9 @@ Java library for Testcontainers that enables embedding Microcks into your JUnit
2828
2929## Build Status
3030
31- Latest released version is ` 0.4.1 ` .
31+ Latest released version is ` 0.4.2 ` .
3232
33- Current development version is ` 0.4.2 -SNAPSHOT ` .
33+ Current development version is ` 0.4.3 -SNAPSHOT ` .
3434
3535#### Sonarcloud Quality metrics
3636
@@ -70,27 +70,25 @@ If you're using Maven:
7070<dependency >
7171 <groupId >io.github.microcks</groupId >
7272 <artifactId >microcks-testcontainers</artifactId >
73- <version >0.4.1 </version >
73+ <version >0.4.2 </version >
7474</dependency >
7575```
7676
7777or if you're using Gradle:
7878
7979``` groovy
8080dependencies {
81- testImplementation 'io.github.microcks:microcks-testcontainers:0.4.1 '
81+ testImplementation 'io.github.microcks:microcks-testcontainers:0.4.2 '
8282}
8383```
8484
8585### Startup the container
8686
8787You just have to specify the container image you'd like to use. This library requires a Microcks ` uber ` distribution (with no MongoDB dependency).
8888
89- Version ` 0.2.9 ` and above require version ` 1.10.0 ` of Microcks container images to enable MQTT and RabbitMQ support.
90-
9189``` java
9290MicrocksContainer microcks = new MicrocksContainer (
93- DockerImageName . parse(" quay.io/microcks/microcks-uber:1.12 .0" ));
91+ DockerImageName . parse(" quay.io/microcks/microcks-uber:1.13 .0" ));
9492microcks. start();
9593```
9694
@@ -102,7 +100,7 @@ Artifacts can be imported as main/Primary ones or as secondary ones. See [Multi-
102100You can do it before starting the container using simple paths:
103101
104102``` java
105- MicrocksContainer microcks = new MicrocksContainer (DockerImageName . parse(" quay.io/microcks/microcks-uber:1.12 .0" ))
103+ MicrocksContainer microcks = new MicrocksContainer (DockerImageName . parse(" quay.io/microcks/microcks-uber:1.13 .0" ))
106104 .withMainArtifacts(" apipastries-openapi.yaml" )
107105 .withSecondaryArtifacts(" apipastries-postman-collection.json" );
108106microcks. start();
0 commit comments