1
0
Fork 0

[fix]
Some checks failed
Run BaseX Tests / test (push) Failing after 33s

This commit is contained in:
Andy Bunce 2025-02-03 21:29:49 +00:00
parent 8c65859693
commit 036915590e
3 changed files with 10 additions and 2 deletions

View file

@ -1,2 +1,2 @@
30/1/2025................. 30/1/2025.................
..lgnfjfggfgxhcsxwnndccxc ..lgnfjfggfgxhcsxwnndccxcx

View file

@ -1,5 +1,5 @@
# run query # run query
XQUERY "make fat jar.." XQUERY "make xar.."
RUN make-xar.xq RUN make-xar.xq
XQUERY "Repo install.." XQUERY "Repo install.."
REPO INSTALL dist/pdfbox.xar REPO INSTALL dist/pdfbox.xar

View file

@ -2,6 +2,14 @@
import module namespace build = 'urn:quodatum:build1' at 'build.xqm'; import module namespace build = 'urn:quodatum:build1' at 'build.xqm';
declare variable $base:= file:resolve-path("../",static-base-uri())=>trace("base "); declare variable $base:= file:resolve-path("../",static-base-uri())=>trace("base ");
declare variable $maven-urls := (
"org/apache/pdfbox/pdfbox/3.0.4/pdfbox-3.0.4.jar",
"org/apache/pdfbox/pdfbox-io/3.0.4/pdfbox-io-3.0.4.jar",
"org/apache/pdfbox/fontbox/3.0.4/fontbox-3.0.4.jar",
"commons-logging/commons-logging/1.3.4/commons-logging-1.3.4.jar"
);
let $_:=build:maven-download($maven-urls,$base || "jars/")
let $xar:=build:xar-create($base) let $xar:=build:xar-create($base)
let $output-file := file:resolve-path("dist/pdfbox.xar",$base) let $output-file := file:resolve-path("dist/pdfbox.xar",$base)
return (build:write-binary($output-file, $xar), return (build:write-binary($output-file, $xar),