8000 Update new package version to match new version · cloudevents/sdk-java@dc71324 · GitHub
[go: up one dir, main page]

10000
Skip to content

Commit dc71324

Browse files
committed
Update new package version to match new version
Disable new Jakarta EE 9 + Jersey test case as requires builidng SDK version to be 11 or greater Signed-off-by: alex-butcher <21243172+abutch3r@users.noreply.github.com>
1 parent dc5be53 commit dc71324

File tree

8 files changed

+16
-18
lines changed

8 files changed

+16
-18
lines changed

docs/http-jakarta-restful-ws-jakarta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RESTful Web Services Binding for Jakarta EE 9+:
1818
</dependency>
1919
```
2020

21-
This integration is tested with Jersey, RestEasy & Microprofile Liberty.
21+
This integration is tested with Jersey (Requires JDK11 or higher), RestEasy & Microprofile Liberty.
2222

2323
#### * Before using this package ensure your web framework does support the `jakarta.*` namespace.
2424

examples/restful-ws-microprofile-liberty/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>cloudevents-examples</artifactId>
55
<groupId>io.cloudevents</groupId>
6-
<version>2.4.0-SNAPSHOT</version>
6+
<version>2.5.0-SNAPSHOT</version>
77
<relativePath>../</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

http/restful-ws-jakarta-integration-tests/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<parent>
66
<artifactId>cloudevents-parent</artifactId>
77
<groupId>io.cloudevents</groupId>
8-
<version>2.4.0-SNAPSHOT</version>
9-
<relativePath>../</relativePath>
8+
<version>2.5.0-SNAPSHOT</version>
9+
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

@@ -22,7 +22,8 @@
2222
<modules>
2323
<module>restful-ws-jakarta-common</module>
2424
<module>restful-ws-resteasy</module>
25-
<module>restful-ws-jersey</module>
25+
<!-- Requires JDK11 to be used -->
26+
<!-- <module>restful-ws-jersey</module> -->
2627
<module>restful-ws-liberty</module>
2728
</modules>
2829

http/restful-ws-jakarta-integration-tests/restful-ws-jakarta-common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
55
<groupId>io.cloudevents</groupId>
6-
<version>2.4.0-SNAPSHOT</version>
6+
<version>2.5.0-SNAPSHOT</version>
77
<relativePath>../</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>io.cloudevents</groupId>
1717
<artifactId>cloudevents-http-restful-ws-jakarta</artifactId>
18-
<version>${project.parent.version}</version>
18+
<version>${project.version}</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>io.cloudevents</groupId>

http/restful-ws-jakarta-integration-tests/restful-ws-jersey/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
2424
<groupId>io.cloudevents</groupId>
25-
<version>2.4.0-SNAPSHOT</version>
25+
<version>2.5.0-SNAPSHOT</version>
2626
<relativePath>../</relativePath>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>

http/restful-ws-jakarta-integration-tests/restful-ws-liberty/pom.xml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@
55
<parent>
66
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
77
<groupId>io.cloudevents</groupId>
8-
<version>2.4.0-SNAPSHOT</version>
8+
<version>2.5.0-SNAPSHOT</version>
99
<relativePath>../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

1313
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests-microprofile</artifactId>
1414
<name>CloudEvents - JAX-RS Jakarta EE9+ Integration Tests - Microprofile and Liberty</nam 3419 e>
15+
<packaging>war</packaging>
1516

1617
<properties>
17-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
19-
<maven.compiler.source>1.8</maven.compiler.source>
20-
<maven.compiler.target>1.8</maven.compiler.target>
2118
<!-- Liberty configuration -->
2219
<liberty.var.default.http.port>9080</liberty.var.default.http.port>
2320
<liberty.var.default.https.port>9443</liberty.var.default.https.port>
@@ -67,13 +64,13 @@
6764
<dependency>
6865
<groupId>org.jboss.resteasy</groupId>
6966
<artifactId>resteasy-client</artifactId>
70-
<version>6.0.0.Final</version>
67+
<version>6.0.3.Final</version>
7168
<scope>test</scope>
7269
</dependency>
7370
<dependency>
7471
<groupId>org.jboss.resteasy</groupId>
7572
<artifactId>resteasy-json-binding-provider</artifactId>
76-
<version>6.0.0.Final</version>
73+
<version>6.0.3.Final</version>
7774
<scope>test</scope>
7875
</dependency>
7976
<dependency>
@@ -96,7 +93,7 @@
9693
<dependency>
9794
<groupId>io.openliberty.arquillian</groupId>
9895
<artifactId>arquillian-liberty-managed-jakarta-junit</artifactId>
99-
<version>2.0.2</version>
96+
<version>2.1.0</version>
10097
<type>pom</type>
10198
<scope>test</scope>
10299
</dependency>

http/restful-ws-jakarta-integration-tests/restful-ws-resteasy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
55
<groupId>io.cloudevents</groupId>
6-
<version>2.4.0-SNAPSHOT</version>
6+
<version>2.5.0-SNAPSHOT</version>
77
<relativePath>../</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

http/restful-ws-jakarta/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.cloudevents</groupId>
2323
<artifactId>cloudevents-parent</artifactId>
24-
<version>2.4.0-SNAPSHOT</version>
24+
<version>2.5.0-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

0 commit comments

Comments
 (0)
0