diff --git a/README.md b/README.md index e6b6e18..f204f1f 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,14 @@ Integration testing with Testcontainers for Jakarta EE You can easily test your application through the provided endpoints as the application is deployed, as is, into a Docker container. -Current version : 1.1.0 +Current version : 1.2.0 - Application runnable on Payara Micro, OpenLiberty, Wildfly, and Glassfish. - Define version of the runtime or use default values. - Easy to call application endpoints by using MicroProfile Rest Client generated proxies that hide all complexity calling the endpoints. - JSON support for endpoints out of the box as you only need to use Java Objects (no JSON). +- Support for databases and automatically configure JPA datasource +- Customizable creation of Docker Build script files. - Remote Debug of application possible during test. - Define response of remote services through WireMock - Various options to access log of the container process diff --git a/commands.txt b/commands.txt index b0ec862..2508a07 100644 --- a/commands.txt +++ b/commands.txt @@ -1,5 +1,5 @@ ==== - Copyright 2022 Rudy De Busscher (https://www.atbash.be) + Copyright 2022-2023 Rudy De Busscher (https://www.atbash.be) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -26,4 +26,8 @@ mvn license:format # Setting versions -mvn versions:set -DnewVersion=1.2.0-SNAPSHOT -DgenerateBackupPoms=false \ No newline at end of file +mvn versions:set -DnewVersion=1.2.0 -DgenerateBackupPoms=false + +# release + +mvn clean deploy -Prelease \ No newline at end of file diff --git a/database/pom.xml b/database/pom.xml index 6283585..da29270 100644 --- a/database/pom.xml +++ b/database/pom.xml @@ -23,12 +23,12 @@ be.atbash.test integration-parent - 1.2.0-SNAPSHOT + 1.2.0 ../pom.xml integration-testing-database - 1.2.0-SNAPSHOT + 1.2.0 diff --git a/example/custom/pom.xml b/example/custom/pom.xml index c721295..f00cf4b 100644 --- a/example/custom/pom.xml +++ b/example/custom/pom.xml @@ -1,7 +1,7 @@