diff --git a/README.md b/README.md index 66cb809a..41f623a2 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Add `microshed-testing-testcontainers` and `junit-jupiter` as test-scoped depend org.microshed microshed-testing-testcontainers - 0.6.1.1 + 0.6.2 test diff --git a/build.gradle b/build.gradle index cac29167..a2752f40 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ plugins { // to check for updates run: ./gradlew dependencyUpdates -Drevision=release id 'com.github.ben-manes.versions' version '0.27.0' } -ext.currentVersion = '0.6.2-SNAPSHOT' -ext.lastRelease = '0.6.1.1' +ext.currentVersion = '0.6.3-SNAPSHOT' +ext.lastRelease = '0.6.2' subprojects { apply plugin: 'java' diff --git a/docs/features/00_Walkthrough.md b/docs/features/00_Walkthrough.md index 9adaba8d..944c66d5 100644 --- a/docs/features/00_Walkthrough.md +++ b/docs/features/00_Walkthrough.md @@ -60,7 +60,7 @@ Given the above application code, we can start by adding maven dependencies: org.microshed microshed-testing-testcontainers - 0.6.1.1 + 0.6.2 test diff --git a/docs/features/01_SupportedRuntimes.md b/docs/features/01_SupportedRuntimes.md index 9d667101..1e851704 100644 --- a/docs/features/01_SupportedRuntimes.md +++ b/docs/features/01_SupportedRuntimes.md @@ -11,7 +11,7 @@ Maven Dependency: org.microshed microshed-testing-liberty - 0.6.1.1 + 0.6.2 ``` @@ -31,7 +31,7 @@ Maven Dependency: org.microshed microshed-testing-payara-micro - 0.6.1.1 + 0.6.2 ``` @@ -51,7 +51,7 @@ Maven Dependency: org.microshed microshed-testing-payara-server - 0.6.1.1 + 0.6.2 ``` @@ -64,13 +64,13 @@ ADD target/myservice.war /opt/payara/deployments ## [Wildfly](https://wildfly.org/) -Generic Maven Dependency: +Maven Dependency: ```xml org.microshed - microshed-testing-testcontainers - 0.6.1.1 + microshed-testing-wildfly + 0.6.2 ``` diff --git a/docs/index.md b/docs/index.md index 8cf8486e..e235404c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -120,7 +120,7 @@ To get started writing a test with MicroShed Testing, add `system-test` and `jun org.microshed microshed-testing-testcontainers - 0.6.1.1 + 0.6.2 test diff --git a/modules/wildfly/src/main/java/org/testcontainers/containers/wildfly/WildFlyAdapter.java b/modules/wildfly/src/main/java/org/testcontainers/containers/wildfly/WildFlyAdapter.java index c7750097..7138d372 100644 --- a/modules/wildfly/src/main/java/org/testcontainers/containers/wildfly/WildFlyAdapter.java +++ b/modules/wildfly/src/main/java/org/testcontainers/containers/wildfly/WildFlyAdapter.java @@ -18,12 +18,11 @@ */ package org.testcontainers.containers.wildfly; +import java.io.File; + import org.microshed.testing.testcontainers.spi.ServerAdapter; import org.testcontainers.images.builder.ImageFromDockerfile; -import java.io.File; -import java.util.Optional; - public class WildFlyAdapter implements ServerAdapter { @Override diff --git a/sample-apps/maven-app/pom.xml b/sample-apps/maven-app/pom.xml index daa91d35..dad7ee7d 100644 --- a/sample-apps/maven-app/pom.xml +++ b/sample-apps/maven-app/pom.xml @@ -34,7 +34,7 @@ org.microshed microshed-testing-testcontainers - 0.6.2-SNAPSHOT + 0.6.3-SNAPSHOT test