Skip to content

Commit 04cf633

Browse files
committed
Release v1.2.0
1 parent 5cb84ad commit 04cf633

File tree

18 files changed

+39
-33
lines changed

18 files changed

+39
-33
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ Integration testing with Testcontainers for Jakarta EE
44

55
You can easily test your application through the provided endpoints as the application is deployed, as is, into a Docker container.
66

7-
Current version : 1.1.0
7+
Current version : 1.2.0
88

99
- Application runnable on Payara Micro, OpenLiberty, Wildfly, and Glassfish.
1010
- Define version of the runtime or use default values.
1111
- Easy to call application endpoints by using MicroProfile Rest Client generated proxies that hide all complexity calling the endpoints.
1212
- JSON support for endpoints out of the box as you only need to use Java Objects (no JSON).
13+
- Support for databases and automatically configure JPA datasource
14+
- Customizable creation of Docker Build script files.
1315
- Remote Debug of application possible during test.
1416
- Define response of remote services through WireMock
1517
- Various options to access log of the container process

commands.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
====
2-
Copyright 2022 Rudy De Busscher (https://www.atbash.be)
2+
Copyright 2022-2023 Rudy De Busscher (https://www.atbash.be)
33

44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -26,4 +26,8 @@ mvn license:format
2626

2727
# Setting versions
2828

29-
mvn versions:set -DnewVersion=1.2.0-SNAPSHOT -DgenerateBackupPoms=false
29+
mvn versions:set -DnewVersion=1.2.0 -DgenerateBackupPoms=false
30+
31+
# release
32+
33+
mvn clean deploy -Prelease

database/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
<parent>
2424
<groupId>be.atbash.test</groupId>
2525
<artifactId>integration-parent</artifactId>
26-
<version>1.2.0-SNAPSHOT</version>
26+
<version>1.2.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

3030
<artifactId>integration-testing-database</artifactId>
31-
<version>1.2.0-SNAPSHOT</version>
31+
<version>1.2.0</version>
3232

3333
<dependencies>
3434

example/custom/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2022 Rudy De Busscher (https://www.atbash.be)
4+
Copyright 2022-2023 Rudy De Busscher (https://www.atbash.be)
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -24,11 +24,11 @@
2424
<parent>
2525
<groupId>be.atbash.test</groupId>
2626
<artifactId>integration-testing-examples</artifactId>
27-
<version>1.2.0-SNAPSHOT</version>
27+
<version>1.2.0</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<artifactId>example-custom</artifactId>
31-
<version>1.2.0-SNAPSHOT</version>
31+
<version>1.2.0</version>
3232
<name>Using Custom build for Jakarta EE Integration Testing Example</name>
3333
<packaging>war</packaging>
3434
<properties>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FROM payara/micro:5.2022.2-jdk11
1+
FROM payara/micro:5.2022.4-jdk11
22
COPY content.txt /opt/content.txt

example/database/liberty/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<parent>
2525
<groupId>be.atbash.test</groupId>
2626
<artifactId>example-database-parent</artifactId>
27-
<version>1.2.0-SNAPSHOT</version>
27+
<version>1.2.0</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<artifactId>example-database-liberty</artifactId>
31-
<version>1.2.0-SNAPSHOT</version>
31+
<version>1.2.0</version>
3232
<name>OpenLiberty Database Jakarta EE Integration Testing Example</name>
3333
<packaging>war</packaging>
3434

example/database/payara/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<parent>
2525
<groupId>be.atbash.test</groupId>
2626
<artifactId>example-database-parent</artifactId>
27-
<version>1.2.0-SNAPSHOT</version>
27+
<version>1.2.0</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<artifactId>example-database-payara</artifactId>
31-
<version>1.2.0-SNAPSHOT</version>
31+
<version>1.2.0</version>
3232
<name>Payara Micro Database Jakarta EE Integration Testing Example</name>
3333
<packaging>war</packaging>
3434

example/database/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@
2424
<parent>
2525
<groupId>be.atbash.test</groupId>
2626
<artifactId>integration-testing-examples</artifactId>
27-
<version>1.2.0-SNAPSHOT</version>
27+
<version>1.2.0</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<artifactId>example-database-parent</artifactId>
31-
<version>1.2.0-SNAPSHOT</version>
31+
<version>1.2.0</version>
3232
<name>Database Jakarta EE Integration Testing Example</name>
3333
<packaging>pom</packaging>
3434

3535
<dependencies>
3636
<dependency>
3737
<groupId>be.atbash.test</groupId>
3838
<artifactId>integration-testing-database</artifactId>
39-
<version>1.2.0-SNAPSHOT</version>
39+
<version>1.2.0</version>
4040
<scope>test</scope>
4141
</dependency>
4242

example/database/wildfly/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<parent>
2525
<groupId>be.atbash.test</groupId>
2626
<artifactId>example-database-parent</artifactId>
27-
<version>1.2.0-SNAPSHOT</version>
27+
<version>1.2.0</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<artifactId>example-database-wildfly</artifactId>
31-
<version>1.2.0-SNAPSHOT</version>
31+
<version>1.2.0</version>
3232
<name>Wildfly Database Jakarta EE Integration Testing Example</name>
3333
<packaging>war</packaging>
3434

example/hello/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<parent>
2525
<groupId>be.atbash.test</groupId>
2626
<artifactId>integration-testing-examples</artifactId>
27-
<version>1.2.0-SNAPSHOT</version>
27+
<version>1.2.0</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030
<artifactId>example-hello-world</artifactId>
31-
<version>1.2.0-SNAPSHOT</version>
31+
<version>1.2.0</version>
3232
<name>Hello World Jakarta EE Integration Testing Example</name>
3333
<packaging>war</packaging>
3434

0 commit comments

Comments
 (0)