-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Native image builds running correctly again.
include all of webroot in native image
- Loading branch information
1 parent
eca9e7c
commit 04247be
Showing
7 changed files
with
1,109 additions
and
114 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,55 @@ | ||
[ | ||
{ | ||
"name":"org.sqlite.core.DB", | ||
"allDeclaredMethods":true, | ||
"allPublicMethods": true, | ||
"allDeclaredFields":true, | ||
"methods":[{"name":"<init>","parameterTypes":["java.lang.String", "java.lang.String", "org.sqlite.SQLiteConfig"] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.core.NativeDB", | ||
"allDeclaredMethods":true, | ||
"allPublicMethods": true, | ||
"allDeclaredFields":true, | ||
"methods":[{"name":"<init>","parameterTypes":["java.lang.String", "java.lang.String", "org.sqlite.SQLiteConfig"] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.BusyHandler", | ||
"allDeclaredMethods":true, | ||
"allPublicMethods": true, | ||
"allDeclaredFields":true, | ||
"methods":[{"name":"<init>","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.Function", | ||
"allDeclaredMethods":true, | ||
"allPublicMethods": true, | ||
"allDeclaredFields":true, | ||
"methods":[{"name":"<init>","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.ProgressHandler", | ||
"allDeclaredMethods":true, | ||
"allPublicMethods": true, | ||
"allDeclaredFields":true, | ||
"methods":[{"name":"<init>","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.Function$Aggregate", | ||
"allDeclaredMethods":true, | ||
"allPublicMethods": true, | ||
"allDeclaredFields":true, | ||
"methods":[{"name":"<init>","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.Function$Window", | ||
"allDeclaredMethods":true, | ||
"allPublicMethods": true, | ||
"allDeclaredFields":true, | ||
"methods":[{"name":"<init>","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.core.DB$ProgressObserver", | ||
"allDeclaredMethods":true, | ||
"allPublicMethods": true, | ||
"allDeclaredFields":true | ||
} | ||
{ | ||
"name":"[Z" | ||
}, | ||
{ | ||
"name":"java.lang.Boolean", | ||
"methods":[{"name":"getBoolean","parameterTypes":["java.lang.String"] }] | ||
}, | ||
{ | ||
"name":"java.lang.Throwable", | ||
"methods":[{"name":"toString","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.BusyHandler", | ||
"methods":[{"name":"callback","parameterTypes":["int"] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.Collation", | ||
"methods":[{"name":"xCompare","parameterTypes":["java.lang.String","java.lang.String"] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.Function", | ||
"fields":[{"name":"args"}, {"name":"context"}, {"name":"value"}], | ||
"methods":[{"name":"xFunc","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.Function$Aggregate", | ||
"methods":[{"name":"clone","parameterTypes":[] }, {"name":"xFinal","parameterTypes":[] }, {"name":"xStep","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.Function$Window", | ||
"methods":[{"name":"xInverse","parameterTypes":[] }, {"name":"xValue","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.ProgressHandler", | ||
"methods":[{"name":"progress","parameterTypes":[] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.core.DB", | ||
"methods":[{"name":"onCommit","parameterTypes":["boolean"] }, {"name":"onUpdate","parameterTypes":["int","java.lang.String","java.lang.String","long"] }, {"name":"throwex","parameterTypes":[] }, {"name":"throwex","parameterTypes":["int"] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.core.DB$ProgressObserver", | ||
"methods":[{"name":"progress","parameterTypes":["int","int"] }] | ||
}, | ||
{ | ||
"name":"org.sqlite.core.NativeDB", | ||
"fields":[{"name":"busyHandler"}, {"name":"commitListener"}, {"name":"pointer"}, {"name":"progressHandler"}, {"name":"updateListener"}], | ||
"methods":[{"name":"stringToUtf8ByteArray","parameterTypes":["java.lang.String"] }, {"name":"throwex","parameterTypes":["java.lang.String"] }] | ||
}, | ||
{ | ||
"name":"peergos.server.Main", | ||
"methods":[{"name":"main","parameterTypes":["java.lang.String[]"] }] | ||
} | ||
] |
8 changes: 8 additions & 0 deletions
8
native-build/META-INF/native-image/predefined-classes-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,8 @@ | ||
[ | ||
{ | ||
"type":"agent-extracted", | ||
"classes":[ | ||
] | ||
} | ||
] | ||
|
Oops, something went wrong.