Non-UI app if to compiled with merging all libs is started OK.
If to compile with "#MergeLibraries: false" and collect all libs into "libs" folder - the error at start is:
c:\TEMP\test>java -jar 1.jar
main._process_globals (java line: 513)
java.lang.NoClassDefFoundError: org/eclipse/jetty/server/HttpConfiguration$Customizer
at b4j.example.main._process_globals(main.java:513)
at b4j.example.main.initializeProcessGlobals(main.java:461)
at b4j.example.main.main(main.java:27)
Caused by: java.lang.ClassNotFoundException: org.eclipse.jetty.server.HttpConfiguration$Customizer
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
... 3 more
I have a server application, which uses 58 libraries. So I have not merged libraries to the jar file to keep the size down. Additionally, I have written a tiny B4J app that will take a list of libraries (the list is provided manually to the program) from the above step. The app copies the...