[add] first commit

This commit is contained in:
Andy Bunce 2026-04-22 21:07:57 +01:00
commit 9b5ea3546a
5 changed files with 219 additions and 0 deletions

18
build.xq Normal file
View file

@ -0,0 +1,18 @@
(: maven test :)
import module namespace build = 'urn:quodatum:build:1' at "build.xqm";
declare variable $base:=file:parent(static-base-uri());
declare variable $download:=file:resolve-path("test/",$base);
let $pdfbox:=(
"org.apache.pdfbox:pdfbox:3.0.5",
"org.apache.pdfbox:pdfbox-io:3.0.5",
"org.apache.pdfbox:fontbox:3.0.5",
"commons-logging:commons-logging:1.3.5"
)
let $basex:=(
"org.basex:basex:12.0",
"net.sf.saxon:Saxon-HE:10.9",
"org.xmlresolver:xmlresolver:6.0.21",
"org.xmlresolver:xmlresolver:6.0.21:data"
)
return build:maven-download($basex,$download)