-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrades ojdbc to the latest version of 23 as of this writing (#9441)
* Upgrades ojdbc to the latest version of 23 as of this writing Signed-off-by: Laird Nelson <[email protected]> * Squashable commit; backs out all special-purpose property handling and lets the UCP take care of all validation Signed-off-by: Laird Nelson <[email protected]> * Squashable commit; uptakes latest 23.x artifacts Signed-off-by: Laird Nelson <[email protected]> * Squashable commit; added --enable-url-protocols=http to mp-2's native-image.properties in an attempt to get the test to pass, or at least to expose other errors Signed-off-by: Laird Nelson <[email protected]> * Squashable commit; adds reflect-config.json to mp-2 packaging test; change not needed by this PR but is necessary for the otherwise unmodified test to pass Signed-off-by: Laird Nelson <[email protected]> * Adds provisional reflect-config.json in jersey/server to support certain parameter conversion use cases; adds useful properties to some integration tests to permit native image tracing more easily Signed-off-by: Laird Nelson <[email protected]> * Adds an exclusion for ucp11 to integrations/db/ojdbc/pom.xml per team consensus Signed-off-by: Laird Nelson <[email protected]> * Adjusts certain archetypes to depend on ucp11, not ucp. Eliminates no-longer-needed ucp dependency in messaging/connectors/aq. Signed-off-by: Laird Nelson <[email protected]> * Removes spurious exclusion in integrations/db/ojdbc/pom.xml Signed-off-by: Laird Nelson <[email protected]> --------- Signed-off-by: Laird Nelson <[email protected]>
- Loading branch information
Showing
12 changed files
with
103 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
...sources/META-INF/native-image/io.helidon.jersey/helidon-jersey-server/reflect-config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
[ | ||
{ | ||
"name": "java.lang.Boolean", | ||
"methods": [ | ||
{ "name": "<init>", "parameterTypes": [ "java.lang.String" ] }, | ||
{ "name": "valueOf", "parameterTypes": [ "java.lang.String" ] } | ||
] | ||
}, | ||
{ | ||
"name": "java.lang.Byte", | ||
"methods": [ | ||
{ "name": "<init>", "parameterTypes": [ "java.lang.String" ] }, | ||
{ "name": "valueOf", "parameterTypes": [ "java.lang.String" ] } | ||
] | ||
}, | ||
{ | ||
"name": "java.lang.Double", | ||
"methods": [ | ||
{ "name": "<init>", "parameterTypes": [ "java.lang.String" ] }, | ||
{ "name": "valueOf", "parameterTypes": [ "java.lang.String" ] } | ||
] | ||
}, | ||
{ | ||
"name": "java.lang.Float", | ||
"methods": [ | ||
{ "name": "<init>", "parameterTypes": [ "java.lang.String" ] }, | ||
{ "name": "valueOf", "parameterTypes": [ "java.lang.String" ] } | ||
] | ||
}, | ||
{ | ||
"name": "java.lang.Integer", | ||
"methods": [ | ||
{ "name": "<init>", "parameterTypes": [ "java.lang.String" ] }, | ||
{ "name": "valueOf", "parameterTypes": [ "java.lang.String" ] } | ||
] | ||
}, | ||
{ | ||
"name": "java.lang.Long", | ||
"methods": [ | ||
{ "name": "<init>", "parameterTypes": [ "java.lang.String" ] }, | ||
{ "name": "valueOf", "parameterTypes": [ "java.lang.String" ] } | ||
] | ||
}, | ||
{ | ||
"name": "java.lang.Short", | ||
"methods": [ | ||
{ "name": "<init>", "parameterTypes": [ "java.lang.String" ] }, | ||
{ "name": "valueOf", "parameterTypes": [ "java.lang.String" ] } | ||
] | ||
}, | ||
{ | ||
"name": "java.lang.String", | ||
"methods": [ | ||
{ "name": "<init>", "parameterTypes": [ "java.lang.String" ] }, | ||
{ "name": "valueOf", "parameterTypes": [ "java.lang.Object" ] } | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters