Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jotschi committed Apr 6, 2023
1 parent 49ab404 commit 7b0296b
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Test Database Provider - 0.1.4-SNAPSHOT
# Test Database Provider - 0.1.4

This project provides tools to quickly allocate test databases for Java based projects.
Depending on the test database size and complexity it may be much faster to not have to prepare a new database for every testcase.
Expand Down Expand Up @@ -26,7 +26,7 @@ The dedicated `testdb-maven-plugin` can be used to startup a postgreSQL and prov
<plugin>
<groupId>io.metaloom.maven</groupId>
<artifactId>testdb-maven-plugin</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</plugin>
```

Expand Down Expand Up @@ -214,7 +214,7 @@ The provider server container can also be setup as a standlone container.

```bash
docker run --rm \
metaloom/testdatabase-provider:0.1.4-SNAPSHOT
metaloom/testdatabase-provider:0.1.4
```

## Provider Server Environment variables
Expand All @@ -240,7 +240,7 @@ Various variables may be specified during startup that reference the testdatabas
<dependency>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider-junit5</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -263,7 +263,7 @@ public void testDB() throws Exception {
<dependency>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider-junit4</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</parent>

<name>Testdatabase Provider :: Client</name>
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</parent>

<name>Testdatabase Provider :: Common</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/dedicated-no-maven-plugin/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
provider:
container_name: 'testprovider-provider'
hostname: 'provider'
image: 'metaloom/testdatabase-provider:0.1.3'
image: 'metaloom/testdatabase-provider:0.1.4'
ports:
- '7543:8080/tcp'
environment:
Expand Down
2 changes: 1 addition & 1 deletion examples/dedicated/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
provider:
container_name: 'testprovider-provider'
hostname: 'provider'
image: 'metaloom/testdatabase-provider:0.1.3'
image: 'metaloom/testdatabase-provider:0.1.4'
ports:
- '7543:8080/tcp'
environment:
Expand Down
4 changes: 2 additions & 2 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<properties>
<postgres.driver.version>42.2.2</postgres.driver.version>
<testcontainer.version>1.17.6</testcontainer.version>
<testdatabase-provider.version>0.1.4-SNAPSHOT</testdatabase-provider.version>
<testdatabase-provider.version>0.1.4</testdatabase-provider.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -60,7 +60,7 @@
<plugin>
<groupId>io.metaloom.maven</groupId>
<artifactId>testdb-maven-plugin</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</plugin>
<plugin>
<groupId>org.flywaydb</groupId>
Expand Down
2 changes: 1 addition & 1 deletion junit4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</parent>

<name>Testdatabase Provider :: JUnit 4</name>
Expand Down
2 changes: 1 addition & 1 deletion junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</parent>

<name>Testdatabase Provider :: JUnit 5</name>
Expand Down
2 changes: 1 addition & 1 deletion maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</parent>
<packaging>maven-plugin</packaging>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>

<packaging>pom</packaging>
<parent>
Expand Down
2 changes: 1 addition & 1 deletion postgresql-db/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</parent>

<name>Testdatabase Provider :: PostgreSQL DB</name>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
</parent>

<name>Testdatabase Provider :: Server</name>
Expand Down

0 comments on commit 7b0296b

Please sign in to comment.