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
Undo changes to existing integration test package names
fix file paths

Signed-off-by: alex-butcher <21243172+abutch3r@users.noreply.github.com>
  • Loading branch information
abutch3r committed Sep 23, 2022
commit b7d4d810754947feedbb01477754eaa839d88920
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
*/

package io.cloudevents.http.restful.ws.jakarta.jersey;
package io.cloudevents.http.restful.ws.jersey;

import com.github.hanleyt.JerseyExtension;
import io.cloudevents.core.mock.CSVFormat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
*/

package io.cloudevents.http.restful.ws.jakarta.resteasy;
package io.cloudevents.http.restful.ws.resteasy;

import io.cloudevents.core.mock.CSVFormat;
import io.cloudevents.core.provider.EventFormatProvider;
Expand Down
2 changes: 1 addition & 1 deletion http/restful-ws-jakarta-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<module>restful-ws-jakarta-common</module>
<module>restful-ws-microprofile</module>
<module>restful-ws-resteasy</module>
<module>restful-ws-jakarta-jersey</module>
<module>restful-ws-jersey</module>
</modules>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<packaging>jar</packaging>

<properties>
<jersey.version>3.0.8</jersey.version>
<jakarta-ee.version>3.0.0</jakarta-ee.version>
</properties>

Expand Down
0