Skip to content

Commit 9aecb4e

Browse files
committed
[feature] Make eXist-db 6.4.0 the minimum compatible version for EXPath Packages
1 parent a3b32f3 commit 9aecb4e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

elemental-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<project.parent.relativePath>.</project.parent.relativePath>
8989

9090
<!-- NOTE: this needs to be set to the latest eXist-db compatible version of the EXPath packages that we want -->
91-
<exist-db.expath.pkg.compatible.version>6.3.0</exist-db.expath.pkg.compatible.version>
91+
<exist-db.expath.pkg.compatible.version>6.4.0</exist-db.expath.pkg.compatible.version>
9292

9393
<!-- Sonar cloud-->
9494
<sonar.projectKey>evolvedbinary_elemental</sonar.projectKey>

exist-core/src/main/java/org/exist/repo/Deployment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ private void checkProcessorVersion(final PackageLoader.Version version) throws P
329329

330330
private void checkExistDbProcessorVersion(final PackageLoader.Version version) throws PackageException {
331331
final String procVersion = SystemProperties.getInstance().getSystemProperty("product-version", "1.0.0");
332-
final String eXistCompatibleProcVersion = SystemProperties.getInstance().getSystemProperty("exist-db-expath-pkg-compatible-version", "6.3.0");
332+
final String eXistCompatibleProcVersion = SystemProperties.getInstance().getSystemProperty("exist-db-expath-pkg-compatible-version", "6.4.0");
333333

334334
final DependencyVersion depVersion = version.getDependencyVersion();
335335
if (!depVersion.isCompatible(eXistCompatibleProcVersion)) {

0 commit comments

Comments
 (0)