1
0
Fork 0
pdfbox/scripts/make-xar.xq

9 lines
339 B
Text
Raw Normal View History

2025-02-03 14:15:01 +00:00
import module namespace build = 'urn:quodatum:build1' at 'build.xqm';
declare variable $base:= file:resolve-path("../",static-base-uri())=>trace("base ");
let $xar:=build:xar-create($base)
let $output-file := file:resolve-path("dist/pdfbox.xar",$base)
return (build:write-binary($output-file, $xar),
trace($output-file,"zar: "))