@@ -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.3 ` .
31+ Latest released version is ` 0.4.4 ` .
3232
33- Current development version is ` 0.4.4 -SNAPSHOT ` .
33+ Current development version is ` 0.4.5 -SNAPSHOT ` .
3434
3535#### Sonarcloud Quality metrics
3636
@@ -70,15 +70,15 @@ If you're using Maven:
7070<dependency >
7171 <groupId >io.github.microcks</groupId >
7272 <artifactId >microcks-testcontainers</artifactId >
73- <version >0.4.3 </version >
73+ <version >0.4.4 </version >
7474</dependency >
7575```
7676
7777or if you're using Gradle:
7878
7979``` groovy
8080dependencies {
81- testImplementation 'io.github.microcks:microcks-testcontainers:0.4.3 '
81+ testImplementation 'io.github.microcks:microcks-testcontainers:0.4.4 '
8282}
8383```
8484
@@ -100,7 +100,7 @@ Artifacts can be imported as main/Primary ones or as secondary ones. See [Multi-
100100You can do it before starting the container using simple paths:
101101
102102``` java
103- MicrocksContainer microcks = new MicrocksContainer (DockerImageName . parse(" quay.io/microcks/microcks-uber:1.13.0 " ))
103+ MicrocksContainer microcks = new MicrocksContainer (DockerImageName . parse(" quay.io/microcks/microcks-uber:1.13.2 " ))
104104 .withMainArtifacts(" apipastries-openapi.yaml" )
105105 .withSecondaryArtifacts(" apipastries-postman-collection.json" );
106106microcks. start();
@@ -118,7 +118,7 @@ Please refer to our [MicrocksContainerTest](https://github.com/microcks/microcks
118118You can also import full [ repository snapshots] ( https://microcks.io/documentation/administrating/snapshots/ ) at once:
119119
120120``` java
121- MicrocksContainer microcks = new MicrocksContainer (DockerImageName . parse(" quay.io/microcks/microcks-uber:1.12.0 " ))
121+ MicrocksContainer microcks = new MicrocksContainer (DockerImageName . parse(" quay.io/microcks/microcks-uber:1.13.2 " ))
122122 .withSnapshots(" microcks-repository.json" );
123123microcks. start();
124124```
0 commit comments