-
Notifications
You must be signed in to change notification settings - Fork 65
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
[WIP] Java 21 upgrades #1005
base: master
Are you sure you want to change the base?
[WIP] Java 21 upgrades #1005
Conversation
@@ -0,0 +1 @@ | |||
corretto64-21.0.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete
@@ -0,0 +1 @@ | |||
corretto64-21.0.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete
@@ -65,6 +65,7 @@ | |||
<configuration> | |||
<instructions> | |||
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> | |||
<Require-Capability>osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))"</Require-Capability> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete
@@ -321,7 +321,7 @@ public int compare(Map.Entry<String, Object> entry1, Map.Entry<String, Object> e | |||
public void init() { | |||
|
|||
get( | |||
"/compose/startup", | |||
"/internal/compose/startup", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So the routes now require this, but only because of how jaxrs servers are registered in the new OSGI whiteboard web services model. There is a plan to replace those with spark servlets which can have their context configured. We won't need to rewrite all of these - so leaving it here for now, but after merging with work @glenhein has been doing we won't need it.
@@ -85,7 +86,7 @@ | |||
|
|||
<feature name="javalin" version="${project.version}" description="Javalin Web Framework"> | |||
<feature prerequisite="true">wrap</feature> | |||
<bundle>wrap:mvn:org.checkerframework/checker-qual/2.0.0$Bundle-Name=checker-qual&Bundle-SymbolicName=checker-qual&Bundle-Version=2.0.0&Export-Package=org.checkerframework.checker.nullness.qual;version="2.0.0"</bundle> | |||
<!-- <bundle>wrap:mvn:org.checkerframework/checker-qual/2.0.0$Bundle-Name=checker-qual&Bundle-SymbolicName=checker-qual&Bundle-Version=2.0.0&Export-Package=org.checkerframework.checker.nullness.qual;version="2.0.0"</bundle>--> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was giving me trouble on install. Will need to revisit
No description provided.