8000 Restful-ws jakarta ee9 namespace support by abutch3r · Pull Request #469 · cloudevents/sdk-java · GitHub
[go: up one dir, main page]

Skip to content

Restful-ws jakarta ee9 namespace support #469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
c9aa867
Initial commit - replace javax restful-ws namespace usage with jakara…
abutch3r Aug 19, 2022
af0483c
update gitignore to cover all copied directories
abutch3r Aug 19, 2022
d564b9e
Update Jersey Version to support jakarta.* namespace packages
abutch3r Sep 12, 2022
a5f4ba3
Undo changes to existing integration test package names
abutch3r Sep 12, 2022
7124971
Add Integration test for Microprofile/Liberty for Jee9 package
abutch3r Sep 16, 2022
8e52f7d
Add documentation for new Jakarta package
abutch3r Sep 20, 2022
79a9290
Support dynamic JSON data content type (#471)
segator Sep 5, 2022
17db1e7
Bump to 2.5.0-SNAPSHOT (#474)
github-actions[bot] Sep 6, 2022
f56b2d7
Fix example in "Materialize an Extension" (#475)
jolivaSan Sep 14, 2022
98dd3b7
Correct URL to naming-conventions (#477)
gklijs Sep 14, 2022
4f40b0c
Fix typo in word Covert (#480)
VikramVuppla Sep 19, 2022
b410cb9
Update new package version to match new version
abutch3r Sep 21, 2022
de32e18
Initial commit - replace javax restful-ws namespace usage with jakara…
abutch3r Aug 19, 2022
837ff89
8000 update gitignore to cover all copied directories
abutch3r Aug 19, 2022
31e2b6c
Update Jersey Version to support jakarta.* namespace packages
abutch3r Sep 12, 2022
b7d4d81
Undo changes to existing integration test package names
abutch3r Sep 12, 2022
e0df551
Add Integration test for Microprofile/Liberty for Jee9 package
abutch3r Sep 16, 2022
455ccdd
Add documentation for new Jakarta package
abutch3r Sep 20, 2022
6500b84
Update new package version to match new version
abutch3r Sep 21, 2022
ffcb1e3
Merge branch '468-restful-ws-jakarta-ee9-support' of https://github.c…
abutch3r Sep 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
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>
  • Loading branch information
abutch3r committed Sep 23, 2022
commit 6500b848cf63499898cf08fa9e0018c338fe868b
2 changes: 1 addition & 1 deletion docs/http-jakarta-restful-ws-jakarta.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RESTful Web Services Binding for Jakarta EE 9+:
</dependency>
```

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

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

Expand Down
2 changes: 1 addition & 1 deletion examples/restful-ws-microprofile-liberty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cloudevents-examples</artifactId>
<groupId>io.cloudevents</groupId>
<version>2.4.0-SNAPSHOT</version>
<version>2.5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
7 changes: 4 additions & 3 deletions http/restful-ws-jakarta-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<parent>
<artifactId>cloudevents-parent</artifactId>
<groupId>io.cloudevents</groupId>
<version>2.4.0-SNAPSHOT</version>
<relativePath>../</relativePath>
<version>2.5.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -22,7 +22,8 @@
<modules>
<module>restful-ws-jakarta-common</module>
<module>restful-ws-resteasy</module>
<module>restful-ws-jersey</module>
<!-- Requires JDK11 to be used -->
<!-- <module>restful-ws-jersey</module> -->
<module>restful-ws-liberty</module>
</modules>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
<groupId>io.cloudevents</groupId>
<version>2.4.0-SNAPSHOT</version>
<version>2.5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-http-restful-ws-jakarta</artifactId>
<version>${project.parent.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.cloudevents</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
<groupId>io.cloudevents</groupId>
<version>2.4.0-SNAPSHOT</version>
<version>2.5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,16 @@
<parent>
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
<groupId>io.cloudevents</groupId>
<version>2.4.0-SNAPSHOT</version>
<version>2.5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests-microprofile</artifactId>
<name>CloudEvents - JAX-RS Jakarta EE9+ Integration Tests - Microprofile and Liberty</name>
<packaging>war</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Liberty configuration -->
<liberty.var.default.http.port>9080</liberty.var.default.http.port>
<liberty.var.default.https.port>9443</liberty.var.default.https.port>
Expand Down Expand Up @@ -67,13 +64,13 @@
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>6.0.0.Final</version>
<version>6.0.3.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-binding-provider</artifactId>
<version>6.0.0.Final</version>
<version>6.0.3.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -96,7 +93,7 @@
<dependency>
<groupId>io.openliberty.arquillian</groupId>
<artifactId>arquillian-liberty-managed-jakarta-junit</artifactId>
<version>2.0.2</version>
<version>2.1.0</version>
<type>pom</type>
<scope>test</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cloudevents-http-restful-ws-jakarta-integration-tests</artifactId>
<groupId>io.cloudevents</groupId>
<version>2.4.0-SNAPSHOT</version>
<version>2.5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion http/restful-ws-jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-parent</artifactId>
<version>2.4.0-SNAPSHOT</version>
<version>2.5.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
0