diff --git a/.github/workflows/prethink.yml b/.github/workflows/prethink.yml
index 59122ae98b6..b19363dd32c 100644
--- a/.github/workflows/prethink.yml
+++ b/.github/workflows/prethink.yml
@@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-java@v5
with:
java-version: '21'
- distribution: 'liberica'
+ distribution: 'temurin'
- name: Install Moderne CLI
run: |
diff --git a/.gitignore b/.gitignore
index 2f96c7e51c2..e69f3843bf6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,6 +26,9 @@ work/
# Claude planning files
plans/
.codacy/
+.moderne/
+!.moderne/context/
+!.moderne/moderne.yml
# Debug logs (e.g. from reindex investigation)
reindex-dbg.log
diff --git a/exist-core-jcstress/pom.xml b/exist-core-jcstress/pom.xml
index 887f0ff97fb..45154ea6d3c 100644
--- a/exist-core-jcstress/pom.xml
+++ b/exist-core-jcstress/pom.xml
@@ -38,6 +38,10 @@
eXist-db Core JCStress Tests
+
+ jcstress
+
+
org.openjdk.jcstress
@@ -51,10 +55,6 @@
-
- jcstress
-
-
diff --git a/exist-core/src/main/java/org/exist/http/filter/PathFilter.java b/exist-core/src/main/java/org/exist/http/filter/PathFilter.java
index a6f42f09d92..50210ba36c7 100644
--- a/exist-core/src/main/java/org/exist/http/filter/PathFilter.java
+++ b/exist-core/src/main/java/org/exist/http/filter/PathFilter.java
@@ -41,7 +41,7 @@
* HTTP POST Query Document
* HTTP DELETE
* HTTP PUT
-
+ *
* Created by IntelliJ IDEA.
* User: lcahlander
* Date: Aug 18, 2010
diff --git a/exist-core/src/main/java/org/exist/source/BinarySource.java b/exist-core/src/main/java/org/exist/source/BinarySource.java
index f0a4ea9b741..53b89022dc7 100644
--- a/exist-core/src/main/java/org/exist/source/BinarySource.java
+++ b/exist-core/src/main/java/org/exist/source/BinarySource.java
@@ -88,4 +88,4 @@ private void checkEncoding() throws IOException {
public int hashCode() {
return Arrays.hashCode(data);
}
-}
\ No newline at end of file
+}
diff --git a/exist-core/src/main/java/org/exist/util/HSort.java b/exist-core/src/main/java/org/exist/util/HSort.java
index 6fd78990daf..8f9fa4d50e7 100644
--- a/exist-core/src/main/java/org/exist/util/HSort.java
+++ b/exist-core/src/main/java/org/exist/util/HSort.java
@@ -28,14 +28,14 @@
import org.exist.numbering.NodeId;
/**
- This class implements Floyd's version
- of the heapsort algorithm.
-
- http://users.encs.concordia.ca/~chvatal/notes/hsort.html
- http://en.wikipedia.org/wiki/Heapsort#Variations
-
- @author José María Fernández (jmfg@users.sourceforge.net)
-*/
+ * This class implements Floyd's version
+ * of the heapsort algorithm.
+ *
+ * http://users.encs.concordia.ca/~chvatal/notes/hsort.html
+ * http://en.wikipedia.org/wiki/Heapsort#Variations
+ *
+ * @author José María Fernández (jmfg@users.sourceforge.net)
+ */
public final class HSort {
public static > void sort(C[] a, int lo, int hi)
diff --git a/exist-core/src/main/java/org/exist/util/InsertionSort.java b/exist-core/src/main/java/org/exist/util/InsertionSort.java
index eaa11e71fb1..c0868fc1278 100644
--- a/exist-core/src/main/java/org/exist/util/InsertionSort.java
+++ b/exist-core/src/main/java/org/exist/util/InsertionSort.java
@@ -27,16 +27,16 @@
import org.exist.dom.persistent.NodeProxy;
/**
- This class implements a version
- of the insertion sort algorithm.
-
- The implementation is inspired on
- the work of Michael Maniscalco in
- C++
- http://www.michael-maniscalco.com/sorting.htm
-
- @author José María Fernández (jmfg@users.sourceforge.net)
-*/
+ * This class implements a version
+ * of the insertion sort algorithm.
+ *
+ * The implementation is inspired on
+ * the work of Michael Maniscalco in
+ * C++
+ * http://www.michael-maniscalco.com/sorting.htm
+ *
+ * @author José María Fernández (jmfg@users.sourceforge.net)
+ */
public final class InsertionSort {
public final static void sortByNodeId(NodeProxy[] a, int lo0, int hi0)
//------------------------------------------------------------
diff --git a/exist-core/src/test/java/org/exist/storage/LowLevelTextTest.java b/exist-core/src/test/java/org/exist/storage/LowLevelTextTest.java
index ccbad6c0201..a06cd015a61 100644
--- a/exist-core/src/test/java/org/exist/storage/LowLevelTextTest.java
+++ b/exist-core/src/test/java/org/exist/storage/LowLevelTextTest.java
@@ -133,4 +133,4 @@ private void callAndTestBorrowCompiledXQuery(StringSource stringSourceArg) throw
preCompiledXQuery, compiledXQuery);
xqueryPool.returnCompiledXQuery(stringSourceArg, compiledXQuery);
}
-}
\ No newline at end of file
+}
diff --git a/exist-core/src/test/java/org/exist/util/ConfigurationTest.java b/exist-core/src/test/java/org/exist/util/ConfigurationTest.java
index e3bd74a4301..98df63376d2 100644
--- a/exist-core/src/test/java/org/exist/util/ConfigurationTest.java
+++ b/exist-core/src/test/java/org/exist/util/ConfigurationTest.java
@@ -110,4 +110,4 @@ void parseBooleanAttributeInvalidTreatsAsFalse() throws Exception {
assertThat(Configuration.parseBooleanAttribute(elem("case", "1"), "case", false)).isFalse();
assertThat(Configuration.parseBooleanAttribute(elem("case", "0"), "case", true)).isFalse();
}
-}
\ No newline at end of file
+}
diff --git a/exist-core/src/test/java/org/exist/xmlrpc/QueryResultCacheTest.java b/exist-core/src/test/java/org/exist/xmlrpc/QueryResultCacheTest.java
index 5a8ed1ca068..ab69ba4203b 100644
--- a/exist-core/src/test/java/org/exist/xmlrpc/QueryResultCacheTest.java
+++ b/exist-core/src/test/java/org/exist/xmlrpc/QueryResultCacheTest.java
@@ -107,4 +107,4 @@ public int hashCode() {
return 42;
}
}
-}
\ No newline at end of file
+}
diff --git a/exist-core/src/test/java/org/exist/xquery/AnnotationsTest.java b/exist-core/src/test/java/org/exist/xquery/AnnotationsTest.java
index c8369fe7fb4..542ab8c297c 100644
--- a/exist-core/src/test/java/org/exist/xquery/AnnotationsTest.java
+++ b/exist-core/src/test/java/org/exist/xquery/AnnotationsTest.java
@@ -223,4 +223,4 @@ private XPathQueryService getQueryService() throws XMLDBException {
XPathQueryService service = testCollection.getService(XPathQueryService.class);
return service;
}
-}
\ No newline at end of file
+}
diff --git a/exist-core/src/test/java/org/exist/xquery/NodeTypeTest.java b/exist-core/src/test/java/org/exist/xquery/NodeTypeTest.java
index e1eda0c2b5f..cf315a27544 100644
--- a/exist-core/src/test/java/org/exist/xquery/NodeTypeTest.java
+++ b/exist-core/src/test/java/org/exist/xquery/NodeTypeTest.java
@@ -191,4 +191,4 @@ private Node load(final String document) throws XMLDBException {
}
return null;
}
-}
\ No newline at end of file
+}
diff --git a/exist-installer/pom.xml b/exist-installer/pom.xml
index e708f3aa85d..b8f30786529 100644
--- a/exist-installer/pom.xml
+++ b/exist-installer/pom.xml
@@ -46,8 +46,8 @@
- ${basedir}/src/main/izpack
- ${basedir}/target/izpack
+ ${project.basedir}/src/main/izpack
+ ${project.basedir}/target/izpack
${project.organization.url}
${project.version}
@@ -116,7 +116,7 @@
true
${izpack.resources.target}/install.xml
- ${basedir}/../exist-distribution/target/exist-distribution-dir
+ ${project.basedir}/../exist-distribution/target/exist-distribution-dir
apache.httpcomponents.core.version,apache.httpcomponents.version,apache.xmlrpc.version,appassembler.version,aspectj.version,git.commit.id,git.commit.id.abbrev,git.closest.tag.name,git.closest.tag.commit.count,git.commit.time,git.commit.id.describe,contact.email,exquery.distribution.version,icu.version,jetty.version,izpack.installation.info.appversion,izpack.installation.info.author.email,izpack.installation.info.author.name,izpack.installation.info.url,izpack.resources.src,izpack.resources.target,izpack.version,jansi.version,jaxb.api.version,jaxb.impl.version,log4j.version,lucene.version,milton.version,project.build.sourceEncoding,project.copyright.name,saxon.version,xmlresolver.version,maven.compiler.release
true
true
diff --git a/exist-parent/pom.xml b/exist-parent/pom.xml
index dbc4383a01e..cd62dd5d41e 100644
--- a/exist-parent/pom.xml
+++ b/exist-parent/pom.xml
@@ -57,13 +57,6 @@
-
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
exist-open
@@ -91,6 +84,26 @@
+
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ HEAD
+
+
+
+
+ github
+ GitHub Registry for Snapshots
+ https://maven.pkg.github.com/eXist-db/exist
+
+
+ sonatype-nexus-staging
+ Nexus Release Repository
+ https://oss.sonatype.org/service/local/staging/deploy/maven2/
+
+
+
21
${maven.compiler.release}
@@ -293,7 +306,8 @@
xmlrpc-common
${apache.xmlrpc.version}
-
+
+
xml-apis
xml-apis
@@ -424,7 +438,8 @@
exificient
1.0.7
-
+
+
xerces
xercesImpl
@@ -436,7 +451,8 @@
exificient-grammars
1.0.7
-
+
+
xerces
xercesImpl
@@ -448,7 +464,8 @@
exificient-core
1.0.7
-
+
+
xerces
xercesImpl
@@ -550,7 +567,8 @@
junit
junit
${junit.version}
-
+
+
@@ -563,7 +581,8 @@
org.hamcrest
hamcrest
${hamcrest.version}
-
+
+
@@ -600,6 +619,190 @@
+
+
+
+ central
+ Maven Central
+ https://repo.maven.apache.org/maven2
+
+ true
+
+
+ false
+
+
+
+ exist-db-maven-central-proxy
+ exist-db maven central proxy (fallback)
+ https://repo.exist-db.org/repository/maven-central/
+
+ true
+
+
+ true
+
+
+
+ github
+ GitHub Registry for Snapshots
+ https://maven.pkg.github.com/eXist-db/exist
+
+ false
+
+
+ true
+
+
+
+ github-xqts-runner
+ GitHub Registry - exist-xqts-runner
+ https://maven.pkg.github.com/eXist-db/exist-xqts-runner
+
+ false
+
+
+ true
+
+
+
+ exist-db-snapshots
+ eXist-db Snapshots
+ https://repo.exist-db.org/repository/exist-db-snapshots/
+
+ false
+
+
+ true
+
+
+
+ exist-db
+ eXist-db Releases
+ https://repo.exist-db.org/repository/exist-db/
+
+ true
+
+
+ false
+
+
+
+ evolvedbinary-snapshots
+ Evolved Binary - eXist-db Snapshots
+ https://repo.evolvedbinary.com/repository/exist-db-snapshots/
+
+ false
+
+
+ true
+
+
+
+ evolved-binary
+ Evolved Binary - eXist-db Releases
+ https://repo.evolvedbinary.com/repository/exist-db/
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ central
+ Maven Central
+ https://repo.maven.apache.org/maven2
+
+ true
+
+
+ false
+
+
+
+ exist-db-maven-central-proxy
+ exist-db maven central proxy (fallback)
+ https://repo.exist-db.org/repository/maven-central/
+
+ true
+
+
+ true
+
+
+
+ github
+ GitHub Registry for Snapshots
+ https://maven.pkg.github.com/eXist-db/exist
+
+ false
+
+
+ true
+
+
+
+ github-xqts-runner
+ GitHub Registry - exist-xqts-runner
+ https://maven.pkg.github.com/eXist-db/exist-xqts-runner
+
+ false
+
+
+ true
+
+
+
+ exist-db-snapshots
+ eXist-db Snapshots
+ https://repo.exist-db.org/repository/exist-db-snapshots/
+
+ false
+
+
+ true
+
+
+
+ exist-db
+ eXist-db Releases
+ https://repo.exist-db.org/repository/exist-db/
+
+ true
+
+
+ false
+
+
+
+ evolved-binary-snapshots
+ Evolved Binary - eXist-db Snapshots
+ https://repo.evolvedbinary.com/repository/exist-db-snapshots/
+
+ false
+
+
+ true
+
+
+
+ evolved-binary
+ Evolved Binary - eXist-db Releases
+ https://repo.evolvedbinary.com/repository/exist-db/
+
+ true
+
+
+ false
+
+
+
+
@@ -869,7 +1072,8 @@
maven-project-info-reports-plugin
3.9.0
- false
+ false
+
@@ -1211,203 +1415,6 @@
-
-
-
- central
- Maven Central
- https://repo.maven.apache.org/maven2
-
- true
-
-
- false
-
-
-
- exist-db-maven-central-proxy
- exist-db maven central proxy (fallback)
- https://repo.exist-db.org/repository/maven-central/
-
- true
-
-
- true
-
-
-
- github
- GitHub Registry for Snapshots
- https://maven.pkg.github.com/eXist-db/exist
-
- false
-
-
- true
-
-
-
- github-xqts-runner
- GitHub Registry - exist-xqts-runner
- https://maven.pkg.github.com/eXist-db/exist-xqts-runner
-
- false
-
-
- true
-
-
-
- exist-db-snapshots
- eXist-db Snapshots
- https://repo.exist-db.org/repository/exist-db-snapshots/
-
- false
-
-
- true
-
-
-
- exist-db
- eXist-db Releases
- https://repo.exist-db.org/repository/exist-db/
-
- true
-
-
- false
-
-
-
- evolvedbinary-snapshots
- Evolved Binary - eXist-db Snapshots
- https://repo.evolvedbinary.com/repository/exist-db-snapshots/
-
- false
-
-
- true
-
-
-
- evolved-binary
- Evolved Binary - eXist-db Releases
- https://repo.evolvedbinary.com/repository/exist-db/
-
- true
-
-
- false
-
-
-
-
-
-
-
- central
- Maven Central
- https://repo.maven.apache.org/maven2
-
- true
-
-
- false
-
-
-
- exist-db-maven-central-proxy
- exist-db maven central proxy (fallback)
- https://repo.exist-db.org/repository/maven-central/
-
- true
-
-
- true
-
-
-
- github
- GitHub Registry for Snapshots
- https://maven.pkg.github.com/eXist-db/exist
-
- false
-
-
- true
-
-
-
- github-xqts-runner
- GitHub Registry - exist-xqts-runner
- https://maven.pkg.github.com/eXist-db/exist-xqts-runner
-
- false
-
-
- true
-
-
-
- exist-db-snapshots
- eXist-db Snapshots
- https://repo.exist-db.org/repository/exist-db-snapshots/
-
- false
-
-
- true
-
-
-
- exist-db
- eXist-db Releases
- https://repo.exist-db.org/repository/exist-db/
-
- true
-
-
- false
-
-
-
- evolved-binary-snapshots
- Evolved Binary - eXist-db Snapshots
- https://repo.evolvedbinary.com/repository/exist-db-snapshots/
-
- false
-
-
- true
-
-
-
- evolved-binary
- Evolved Binary - eXist-db Releases
- https://repo.evolvedbinary.com/repository/exist-db/
-
- true
-
-
- false
-
-
-
-
-
-
- github
- GitHub Registry for Snapshots
- https://maven.pkg.github.com/eXist-db/exist
-
-
- sonatype-nexus-staging
- Nexus Release Repository
- https://oss.sonatype.org/service/local/staging/deploy/maven2/
-
-
-
@@ -1459,11 +1466,11 @@
+ dest="${onnx.model.dir}/model.onnx"
+ skipexisting="true"/>
+ dest="${onnx.model.dir}/tokenizer.json"
+ skipexisting="true"/>
@@ -1472,6 +1479,7 @@
+ 3.2.0
diff --git a/extensions/expath/pom.xml b/extensions/expath/pom.xml
index 906ae8cb833..03e28fff410 100644
--- a/extensions/expath/pom.xml
+++ b/extensions/expath/pom.xml
@@ -60,7 +60,6 @@
org.apache.httpcomponents
httpcore
- ${apache.httpcomponents.core.version}
diff --git a/extensions/exquery/modules/pom.xml b/extensions/exquery/modules/pom.xml
index 42d90559b98..2bd4d2b5259 100644
--- a/extensions/exquery/modules/pom.xml
+++ b/extensions/exquery/modules/pom.xml
@@ -50,16 +50,16 @@
+
+ request
+
+
scm:git:https://github.com/exist-db/exist.git
scm:git:https://github.com/exist-db/exist.git
scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
-
- request
-
+ HEAD
+
diff --git a/extensions/exquery/pom.xml b/extensions/exquery/pom.xml
index 1bdcc0cb6b0..fc5b38d4994 100644
--- a/extensions/exquery/pom.xml
+++ b/extensions/exquery/pom.xml
@@ -50,18 +50,18 @@
-
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
restxq
modules
+
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ HEAD
+
+
diff --git a/extensions/indexes/pom.xml b/extensions/indexes/pom.xml
index a9d7a06d682..3bf62ebd987 100644
--- a/extensions/indexes/pom.xml
+++ b/extensions/indexes/pom.xml
@@ -38,13 +38,6 @@
eXist-db Index Extensions
eXist-db NoSQL Database Index Extensions
-
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
lucene
ngram
@@ -55,4 +48,11 @@
vector-it
+
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ HEAD
+
+
diff --git a/extensions/indexes/spatial/pom.xml b/extensions/indexes/spatial/pom.xml
index cd24f5ff30d..5d9a9262358 100644
--- a/extensions/indexes/spatial/pom.xml
+++ b/extensions/indexes/spatial/pom.xml
@@ -42,8 +42,8 @@
scm:git:https://github.com/exist-db/exist.git
scm:git:https://github.com/exist-db/exist.git
scm:git:https://github.com/exist-db/exist.git
- HEAD
-
+ HEAD
+
34.3
@@ -124,6 +124,30 @@
+
+
+
+ osgeo
+ https://repo.osgeo.org/repository/release/
+
+ true
+
+
+ false
+
+
+
+ atlassian
+ https://packages.atlassian.com/maven-3rdparty/
+
+ true
+
+
+ false
+
+
+
+
@@ -185,21 +209,5 @@
-
-
-
-
- osgeo
- https://repo.osgeo.org/repository/release/
- true
- false
-
-
- atlassian
- https://packages.atlassian.com/maven-3rdparty/
- true
- false
-
-
diff --git a/extensions/modules/expathrepo/expathrepo-trigger-test/pom.xml b/extensions/modules/expathrepo/expathrepo-trigger-test/pom.xml
index 437c88d137a..6de00696892 100644
--- a/extensions/modules/expathrepo/expathrepo-trigger-test/pom.xml
+++ b/extensions/modules/expathrepo/expathrepo-trigger-test/pom.xml
@@ -80,19 +80,6 @@
-
-
-
- org.apache.maven.plugins
- maven-deploy-plugin
-
-
- true
-
-
-
-
-
@@ -132,4 +119,17 @@
+
+
+
+
+ org.apache.maven.plugins
+ maven-deploy-plugin
+
+
+ true
+
+
+
+
diff --git a/extensions/modules/expathrepo/pom.xml b/extensions/modules/expathrepo/pom.xml
index 94911492e1b..9a55407256e 100644
--- a/extensions/modules/expathrepo/pom.xml
+++ b/extensions/modules/expathrepo/pom.xml
@@ -114,7 +114,7 @@
copy-resources
- ${basedir}/target/generated-test-resources
+ ${project.basedir}/target/generated-test-resources
expathrepo-trigger-test/target/
diff --git a/extensions/modules/persistentlogin/pom.xml b/extensions/modules/persistentlogin/pom.xml
index eb585b750cb..d65335db765 100644
--- a/extensions/modules/persistentlogin/pom.xml
+++ b/extensions/modules/persistentlogin/pom.xml
@@ -42,73 +42,8 @@
scm:git:https://github.com/exist-db/exist.git
scm:git:https://github.com/exist-db/exist.git
scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
-
-
-
- src/test/resources
- false
-
-
- src/test/resources-filtered
- true
-
-
-
-
- org.apache.maven.plugins
- maven-dependency-plugin
-
-
- analyze
-
- analyze-only
-
-
- true
-
-
- ${project.groupId}:exist-jetty-config:jar:${project.version}
- org.eclipse.jetty:jetty-deploy:jar:${jetty.version}
- org.eclipse.jetty:jetty-jmx:jar:${jetty.version}
-
-
-
- net.sf.xmldb-org:xmldb-api:jar
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
-
- @{jacocoArgLine} -Dfile.encoding=${project.build.sourceEncoding}
-
- ${project.build.testOutputDirectory}/conf.xml
- ${project.basedir}/../../../exist-jetty-config/target/classes/org/exist/jetty
- ${project.build.testOutputDirectory}/standalone-webapp
- ${project.build.testOutputDirectory}/log4j2.xml
-
-
-
-
- org.apache.maven.plugins
- maven-failsafe-plugin
-
-
- ${project.build.testOutputDirectory}/conf.xml
- ${project.basedir}/../../../exist-jetty-config/target/classes/org/exist/jetty
- ${project.build.testOutputDirectory}/standalone-webapp
- ${project.build.testOutputDirectory}/log4j2.xml
-
-
-
-
-
+ HEAD
+
@@ -178,4 +113,69 @@
+
+
+
+ src/test/resources
+ false
+
+
+ src/test/resources-filtered
+ true
+
+
+
+
+ org.apache.maven.plugins
+ maven-dependency-plugin
+
+
+ analyze
+
+ analyze-only
+
+
+ true
+
+
+ ${project.groupId}:exist-jetty-config:jar:${project.version}
+ org.eclipse.jetty:jetty-deploy:jar:${jetty.version}
+ org.eclipse.jetty:jetty-jmx:jar:${jetty.version}
+
+
+
+ net.sf.xmldb-org:xmldb-api:jar
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+
+ @{jacocoArgLine} -Dfile.encoding=${project.build.sourceEncoding}
+
+ ${project.build.testOutputDirectory}/conf.xml
+ ${project.basedir}/../../../exist-jetty-config/target/classes/org/exist/jetty
+ ${project.build.testOutputDirectory}/standalone-webapp
+ ${project.build.testOutputDirectory}/log4j2.xml
+
+
+
+
+ org.apache.maven.plugins
+ maven-failsafe-plugin
+
+
+ ${project.build.testOutputDirectory}/conf.xml
+ ${project.basedir}/../../../exist-jetty-config/target/classes/org/exist/jetty
+ ${project.build.testOutputDirectory}/standalone-webapp
+ ${project.build.testOutputDirectory}/log4j2.xml
+
+
+
+
+
+
diff --git a/extensions/modules/pom.xml b/extensions/modules/pom.xml
index 0f8bf723555..56c67297a17 100644
--- a/extensions/modules/pom.xml
+++ b/extensions/modules/pom.xml
@@ -38,13 +38,6 @@
eXist-db Extension XQuery Modules
eXist-db Extension XQuery Modules
-
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
cache
compression
@@ -68,4 +61,11 @@
xslfo
+
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ HEAD
+
+
diff --git a/extensions/pom.xml b/extensions/pom.xml
index 2b817b85203..8d811d729c8 100644
--- a/extensions/pom.xml
+++ b/extensions/pom.xml
@@ -38,20 +38,15 @@
eXist-db Extensions
eXist-db NoSQL Database Extensions
-
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
contentextraction
-
+
+
exiftool
expath
exquery
-
+
+
indexes
modules
vector
@@ -60,6 +55,13 @@
xqdoc
+
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ HEAD
+
+
diff --git a/extensions/security/pom.xml b/extensions/security/pom.xml
index 5058a5df1b8..f8297425e98 100644
--- a/extensions/security/pom.xml
+++ b/extensions/security/pom.xml
@@ -38,17 +38,17 @@
eXist-db Extension Security Modules
eXist-db Extension Security Modules
-
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
activedirectory
iprange
ldap
+
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ HEAD
+
+
diff --git a/extensions/vector/pom.xml b/extensions/vector/pom.xml
index 5b5b030fe07..da0d1ee654d 100644
--- a/extensions/vector/pom.xml
+++ b/extensions/vector/pom.xml
@@ -38,12 +38,6 @@
eXist-db Vector Embedding Extension
eXist-db Vector Embedding Extension (ONNX local models)
-
- 1.24.3
- onnxruntime
- 0.36.0
-
-
scm:git:https://github.com/exist-db/exist.git
scm:git:https://github.com/exist-db/exist.git
@@ -51,6 +45,12 @@
HEAD
+
+ 1.24.3
+ onnxruntime
+ 0.36.0
+
+
org.exist-db
@@ -93,16 +93,6 @@
-
-
-
- gpu
-
- onnxruntime_gpu
-
-
-
-
@@ -126,4 +116,14 @@
+
+
+
+
+ gpu
+
+ onnxruntime_gpu
+
+
+
diff --git a/pom.xml b/pom.xml
index f82e32d6b2b..c87d37464fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,13 +38,6 @@
eXist-db
eXist-db multi-module project
-
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- scm:git:https://github.com/exist-db/exist.git
- HEAD
-
-
exist-parent
exist-ant
@@ -58,6 +51,13 @@
exist-xqts
+
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ scm:git:https://github.com/exist-db/exist.git
+ HEAD
+
+