Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jotschi committed Apr 1, 2023
1 parent 258854a commit 0a379d1
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 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.2-SNAPSHOT
# Test Database Provider - 0.1.2

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 All @@ -22,7 +22,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.2-SNAPSHOT</version>
<version>0.1.2</version>
</plugin>
```

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

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

## Provider Server Environment variables
Expand All @@ -207,7 +207,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.2-SNAPSHOT</version>
<version>0.1.2</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -230,7 +230,7 @@ public void testDB() throws Exception {
<dependency>
<groupId>io.metaloom.test</groupId>
<artifactId>testdatabase-provider-junit4</artifactId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</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.2-SNAPSHOT</version>
<version>0.1.2</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.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>

<name>Testdatabase Provider :: Common</name>
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.1'
image: 'metaloom/testdatabase-provider:0.1.2'
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.2-SNAPSHOT</testdatabase-provider.version>
<testdatabase-provider.version>0.1.2</testdatabase-provider.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -59,7 +59,7 @@
<plugin>
<groupId>io.metaloom.maven</groupId>
<artifactId>testdb-maven-plugin</artifactId>
<version>0.1.2-SNAPSHOT</version>
<version>0.1.2</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.2-SNAPSHOT</version>
<version>0.1.2</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.2-SNAPSHOT</version>
<version>0.1.2</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.2-SNAPSHOT</version>
<version>0.1.2</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.2-SNAPSHOT</version>
<version>0.1.2</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.2-SNAPSHOT</version>
<version>0.1.2</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.2-SNAPSHOT</version>
<version>0.1.2</version>
</parent>

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

0 comments on commit 0a379d1

Please sign in to comment.