fixed missing plugin in native image
All checks were successful
CI / build (push) Successful in 34m59s

This commit is contained in:
2025-02-27 23:30:33 +08:00
parent 49bb4f41b8
commit d15235fc4c
4 changed files with 59 additions and 3 deletions

View File

@@ -32,8 +32,9 @@ object GraalNativeImageConfiguration {
@JvmStatic
fun main(vararg args : String) {
val serverDoc = RemoteBuildCacheServer.DEFAULT_CONFIGURATION_URL.openStream().use {
Xml.parseXml(RemoteBuildCacheServer.DEFAULT_CONFIGURATION_URL, it)
val serverURL = URI.create("file:conf/rbcs-client.xml").toURL()
val serverDoc = serverURL.openStream().use {
Xml.parseXml(serverURL, it)
}
Parser.parse(serverDoc)