Skip to content

Commit fd3f377

Browse files
authored
Merge pull request #196 from evolvedbinary/6.x.x/feature/bump-exist-compatibility
[6.x.x] Make eXist-db 6.4.0 the minimum compatible version for EXPath Packages
2 parents 6d545d4 + 0ee0053 commit fd3f377

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
@@ -332,7 +332,7 @@ private void checkProcessorVersion(final PackageLoader.Version version) throws P
332332

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

337337
final DependencyVersion depVersion = version.getDependencyVersion();
338338
if (!depVersion.isCompatible(eXistCompatibleProcVersion)) {

0 commit comments

Comments
 (0)