-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable Standard.AWS and Standard.Microsoft in native image (#12156)
* Enable Standard.AWS in native image `com.amazonaws` was required to be initialized at runtime due to logging being already present on that list. Closes #12149. * Add Standard.Microsoft * update CI * revert accidental change * Update resources for Microsoft * fmt
- Loading branch information
Showing
4 changed files
with
31 additions
and
4 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
9 changes: 9 additions & 0 deletions
9
...icrosoft/src/main/resources/META-INF/native-image/org/enso/microsoft/resource-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,9 @@ | ||
{ | ||
"resources":{ | ||
"includes":[{ | ||
"pattern":"\\QMETA-INF/java.sql.Driver\\E" | ||
}]}, | ||
"bundles":[{ | ||
"name": "com.microsoft.sqlserver.jdbc.SQLServerResource" | ||
}] | ||
} |
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