1- # Test Database Provider - 0.1.1-SNAPSHOT   
1+ # Test Database Provider - 0.1.1  
22
33This project provides tools to quickly allocate test databases for Java based projects.
44Depending 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
4242The 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
4950Maven Commands:
5051
@@ -131,7 +132,7 @@ The provider server container can also be setup as a standlone container.
131132
132133``` bash 
133134docker 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``` 
0 commit comments