You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In eXist-db you can import XQuery modules using the "resource:" scheme.
This will ultimately resolve to a path in the filesystem relative to the current project.
My current understanding of this feature is that it resolves against <project-root>/src/main/resources as the base path.
Consider a module a in /path/to/my/project/src/test/xquery/modules/a.xqm
importing module b in /path/to/my/project/src/test/resources/b.xqm (that declares a function b:f)
In eXist-db you can import XQuery modules using the "resource:" scheme.
This will ultimately resolve to a path in the filesystem relative to the current project.
My current understanding of this feature is that it resolves against
<project-root>/src/main/resources
as the base path.Consider a module a in
/path/to/my/project/src/test/xquery/modules/a.xqm
importing module b in
/path/to/my/project/src/test/resources/b.xqm
(that declares a functionb:f
)This can be written as
The text was updated successfully, but these errors were encountered: