1
0
Fork 0

[mod] memory usage

This commit is contained in:
Andy Bunce 2025-02-18 16:20:02 +00:00
parent d8acb448de
commit 919514f783
9 changed files with 67 additions and 26 deletions

View file

@ -1,4 +1,4 @@
(: WIP :)
import module namespace build = 'urn:quodatum:build1' at 'build.xqm';
declare variable $base:= file:resolve-path("../",static-base-uri())=>trace("base ");

View file

@ -1,7 +1,6 @@
(: build xar:)
import module namespace build = 'urn:quodatum:build1' at 'build.xqm';
let $xar:=build:xar-create()
let $output-file := build:xar-path()
return (build:write-binary($output-file, $xar),

View file

@ -15,7 +15,7 @@ as xs:string {
string-join(
("https://repo.maven.apache.org/maven2/",
string-join($dep/*/string(), "/"),
replace($dep/groupId,'.',"/"),
"/",$dep/artifactId, "-", $dep/version, ".",$ext
))
};

View file

@ -1,7 +1,7 @@
import module namespace build = 'urn:quodatum:build1' at 'build.xqm';
let $output-file := file:resolve-path("dist/pdfbox-" || $build:PKG?version ||".xar",$build:base)
let $output-file := build:xar-path()
return (
repo:install($output-file),
trace($output-file,"repo: ")