Skip to content

Commit

Permalink
Merge pull request #129 from aguibert/versionUpdate-062
Browse files Browse the repository at this point in the history
Update to version 0.6.3-SNAPSHOT
  • Loading branch information
aguibert committed Jan 10, 2020
2 parents 4d5dc4c + dfe227c commit 4e192d9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add `microshed-testing-testcontainers` and `junit-jupiter` as test-scoped depend
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-testcontainers</artifactId>
<version>0.6.1.1</version>
<version>0.6.2</version>
<scope>test</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion docs/features/00_Walkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Given the above application code, we can start by adding maven dependencies:
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-testcontainers</artifactId>
<version>0.6.1.1</version>
<version>0.6.2</version>
<scope>test</scope>
</dependency>

Expand Down
12 changes: 6 additions & 6 deletions docs/features/01_SupportedRuntimes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Maven Dependency:
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-liberty</artifactId>
<version>0.6.1.1</version>
<version>0.6.2</version>
</dependency>
```

Expand All @@ -31,7 +31,7 @@ Maven Dependency:
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-payara-micro</artifactId>
<version>0.6.1.1</version>
<version>0.6.2</version>
</dependency>
```

Expand All @@ -51,7 +51,7 @@ Maven Dependency:
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-payara-server</artifactId>
<version>0.6.1.1</version>
<version>0.6.2</version>
</dependency>
```

Expand All @@ -64,13 +64,13 @@ ADD target/myservice.war /opt/payara/deployments

## [Wildfly](https://wildfly.org/)

Generic Maven Dependency:
Maven Dependency:

```xml
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-testcontainers</artifactId>
<version>0.6.1.1</version>
<artifactId>microshed-testing-wildfly</artifactId>
<version>0.6.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ To get started writing a test with MicroShed Testing, add `system-test` and `jun
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-testcontainers</artifactId>
<version>0.6.1.1</version>
<version>0.6.2</version>
<scope>test</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sample-apps/maven-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-testcontainers</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 4e192d9

Please sign in to comment.