Skip to content

Commit d0e0949

Browse files
committed
Prepare release
1 parent 3b38f37 commit d0e0949

File tree

10 files changed

+17
-16
lines changed

10 files changed

+17
-16
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Test Database Provider - 0.1.1-SNAPSHOT
1+
# Test Database Provider - 0.1.1
22

33
This project provides tools to quickly allocate test databases for Java based projects.
44
Depending on the test database size and complexity it may be much faster to not have to prepare a new database for every testcase.
@@ -22,7 +22,7 @@ The dedicated `testdb-maven-plugin` can be used to startup a postgreSQL and prov
2222
<plugin>
2323
<groupId>io.metaloom.maven</groupId>
2424
<artifactId>testdb-maven-plugin</artifactId>
25-
<version>0.1.1-SNAPSHOT</version>
25+
<version>0.1.1</version>
2626
</plugin>
2727
```
2828

@@ -41,10 +41,11 @@ The dedicated `testdb-maven-plugin` can be used to startup a postgreSQL and prov
4141

4242
The lifecyle order in this example:
4343

44+
* **pre-clean** - Stopping of any still running containers
4445
* **initialize** - Startup of postgresql + provider container
4546
* **generate-sources** - Flyway setup of database
4647
* **process-test-classes** - Setup of a testdatabase pool
47-
* **post-integration-test** - Removal of started containers
48+
* **prepare-package** - Removal of started containers
4849

4950
Maven Commands:
5051

@@ -131,7 +132,7 @@ The provider server container can also be setup as a standlone container.
131132

132133
```bash
133134
docker run --rm \
134-
metaloom/testdatabase-provider:0.1.1-SNAPSHOT
135+
metaloom/testdatabase-provider:0.1.1
135136
```
136137

137138
## Provider Server Environment variables
@@ -158,7 +159,7 @@ Various variables may be specified during startup that reference the testdatabas
158159
<dependency>
159160
<groupId>io.metaloom.test</groupId>
160161
<artifactId>testdatabase-provider-junit5</artifactId>
161-
<version>0.1.1-SNAPSHOT</version>
162+
<version>0.1.1</version>
162163
<scope>test</scope>
163164
</dependency>
164165
```
@@ -181,7 +182,7 @@ public void testDB() throws Exception {
181182
<dependency>
182183
<groupId>io.metaloom.test</groupId>
183184
<artifactId>testdatabase-provider-junit4</artifactId>
184-
<version>0.1.1-SNAPSHOT</version>
185+
<version>0.1.1</version>
185186
<scope>test</scope>
186187
</dependency>
187188
```

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.metaloom.test</groupId>
99
<artifactId>testdatabase-provider</artifactId>
10-
<version>0.1.1-SNAPSHOT</version>
10+
<version>0.1.1</version>
1111
</parent>
1212

1313
<name>Testdatabase Provider :: Client</name>

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.metaloom.test</groupId>
99
<artifactId>testdatabase-provider</artifactId>
10-
<version>0.1.1-SNAPSHOT</version>
10+
<version>0.1.1</version>
1111
</parent>
1212

1313
<name>Testdatabase Provider :: Common</name>

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<properties>
1111
<postgres.driver.version>42.2.2</postgres.driver.version>
1212
<testcontainer.version>1.17.6</testcontainer.version>
13-
<testdatabase-provider.version>0.1.1-SNAPSHOT</testdatabase-provider.version>
13+
<testdatabase-provider.version>0.1.1</testdatabase-provider.version>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
</properties>
1616

@@ -54,7 +54,7 @@
5454
<plugin>
5555
<groupId>io.metaloom.maven</groupId>
5656
<artifactId>testdb-maven-plugin</artifactId>
57-
<version>0.1.1-SNAPSHOT</version>
57+
<version>0.1.1</version>
5858
</plugin>
5959
<plugin>
6060
<groupId>org.flywaydb</groupId>

junit4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.metaloom.test</groupId>
99
<artifactId>testdatabase-provider</artifactId>
10-
<version>0.1.1-SNAPSHOT</version>
10+
<version>0.1.1</version>
1111
</parent>
1212

1313
<name>Testdatabase Provider :: JUnit 4</name>

junit5/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.metaloom.test</groupId>
99
<artifactId>testdatabase-provider</artifactId>
10-
<version>0.1.1-SNAPSHOT</version>
10+
<version>0.1.1</version>
1111
</parent>
1212

1313
<name>Testdatabase Provider :: JUnit 5</name>

maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.metaloom.test</groupId>
1010
<artifactId>testdatabase-provider</artifactId>
11-
<version>0.1.1-SNAPSHOT</version>
11+
<version>0.1.1</version>
1212
</parent>
1313
<packaging>maven-plugin</packaging>
1414

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.metaloom.test</groupId>
66
<artifactId>testdatabase-provider</artifactId>
7-
<version>0.1.1-SNAPSHOT</version>
7+
<version>0.1.1</version>
88

99
<packaging>pom</packaging>
1010
<parent>

postgresql-db/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.metaloom.test</groupId>
99
<artifactId>testdatabase-provider</artifactId>
10-
<version>0.1.1-SNAPSHOT</version>
10+
<version>0.1.1</version>
1111
</parent>
1212

1313
<name>Testdatabase Provider :: PostgreSQL DB</name>

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.metaloom.test</groupId>
99
<artifactId>testdatabase-provider</artifactId>
10-
<version>0.1.1-SNAPSHOT</version>
10+
<version>0.1.1</version>
1111
</parent>
1212

1313
<name>Testdatabase Provider :: Server</name>

0 commit comments

Comments
 (0)