-
Notifications
You must be signed in to change notification settings - Fork 83
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
Java 9 support #201
Comments
Hi All, |
If this is just the manifest entry, then it's easy. If there is a split package issue then it would be a breaking change. |
Unfortunately, it is a split package issue. You can try patching the module using |
I decided to tackle this before a potential 1.x release, since we're technically free to introduce breaking changes while we're still at 0.x. |
I released 0.26.0-RC.0 with Java 9 support. |
@spac-valentin @bhatnagarm Have you tried the RC? |
In case when problem-spring-web is used, then problem & jackson-datatype-problem will be obtained transitively, |
problem and problem-spring-web don't share the same version. You need to
maintain separate versions for those two dependencies.
…On Tue, 22 Dec 2020, 16:07 Alexander Dovbnya, ***@***.***> wrote:
@whiskeysierra <https://github.com/whiskeysierra>
I released 0.26.0-RC.0 with Java 9 support.
In case when *problem-spring-web* is used, then *problem* &
*jackson-datatype-problem* will be obtained transitively,
but problem-spring-web:*0.26.0-RC.0* is not released.
So a Java 9 support patch is required for the entire dependency tree of
the "problem" library (at least starting with *problem-spring-web*).
Could you please release such a patch for all "problem" libs dependencies?
Dependency tree:
[image: image]
<https://user-images.githubusercontent.com/6270835/102902279-75052300-4477-11eb-9787-a3dd8cae1c06.png>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#201 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADI7HLVJ6ZAPISTJZKQXKLSWCYZLANCNFSM4MEWWOHQ>
.
|
Yes, they use separate versions. There is no patch for problem-spring-web that uses problem / jackson-data-type-problem of version 0.26.0-RC.0. It would also be nice to have a "Java 9 modules" patch version of problem-spring-web, that uses problem and jackson-data-type-problem version 0.26.0-RC.0 |
Is problem-spring-web directly relying on jackson-datatype-problem? |
Ah, yes. We referece |
@adovbnya I released 0.27.0-RC.0 with an updated dependency. |
jackson-datatype-problem
andorg.zalando.problem
cannot be used in the same module asDetailed Description
I am trying to build a spring app using java 13 with modules and noticed that there is no support for it
Context
Possible Implementation
I think the fix is as easy as adding an
Automatic-Module-Name: <module name>
entry to the library'sMANIFEST.MF
Your Environment
The text was updated successfully, but these errors were encountered: