You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by kw...@apache.org on 2023/04/19 09:28:18 UTC

[jackrabbit-filevault-package-maven-plugin] 01/01: Use FileVault 3.6.9-SNAPSHOT

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch feature/use-filevault-3.6.9-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault-package-maven-plugin.git

commit 03e811c982368d3f91768faa31ed4057dd1a1434
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Wed Apr 19 11:28:11 2023 +0200

    Use FileVault 3.6.9-SNAPSHOT
---
 pom.xml | 33 +++++++++++++++++++++++++++++++--
 1 file changed, 31 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 46ccc36..94b1752 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
         <groupId>org.apache.jackrabbit.vault</groupId>
         <artifactId>parent</artifactId>
         <relativePath />
-        <version>3.6.6</version>
+        <version>3.6.9-SNAPSHOT</version>
     </parent>
 
     <!-- ====================================================================== -->
@@ -185,6 +185,9 @@
                                         <exclude>*:h2</exclude><!-- embedded in vault-core -->
                                         <exclude>org.apache.jackrabbit:jackrabbit-jcr2spi</exclude><!-- embedded in vault-core -->
                                         <exclude>org.apache.jackrabbit:jackrabbit-spi2dav</exclude><!-- not used in this context -->
+                                        <exclude>org.apache.felix:org.apache.felix.configadmin</exclude><!-- all transitive ones (with provided scope) are not relevant here) -->
+                                        <exclude>org.apache.felix:org.apache.felix.cm.json</exclude>
+                                        <exclude>org.apache.felix:org.apache.felix.converter</exclude>
                                         <!-- the following artifacts are not supposed to be used in OSGi/container context -->
                                         <exclude>org.apache.maven:maven-archiver</exclude>
                                         <exclude>org.codehaus.plexus:plexus-archiver</exclude>
@@ -445,7 +448,7 @@
             <artifactId>jackrabbit-jcr-commons</artifactId>
             <scope>compile</scope>
         </dependency>
-        <!-- only a transitive dependency but must be declared due to https://issues.apache.org/jira/browse/JCRVLT-394 -->
+        <!-- transitive dependencies of filevault but must be declared due to https://issues.apache.org/jira/browse/JCRVLT-394 -->
         <dependency>
             <groupId>org.apache.jackrabbit</groupId>
             <artifactId>oak-jackrabbit-api</artifactId>
@@ -461,6 +464,32 @@
             <artifactId>org.osgi.framework</artifactId>
             <scope>compile</scope>
         </dependency>
+        <!-- transitive dependencies for validating OSGi configurations
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.configadmin</artifactId>
+            <version>1.8.12</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.cm.json</artifactId>
+            <version>1.0.6</version>
+            <scope>compile</scope>
+        </dependency>
+         transitive (but provided scope) dep of felix.cm.json
+        <dependency>
+            <groupId>org.apache.johnzon</groupId>
+            <artifactId>johnzon-core</artifactId>
+            <version>1.2.3</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-json_1.1_spec</artifactId>
+            <version>1.2</version>
+            <scope>compile</scope>
+        </dependency> -->
         <!-- Maven Core artifacts, version is determined by Maven distribution
              contained in https://github.com/apache/maven/blob/master/maven-core/src/main/resources/META-INF/maven/extension.xml#L133-L193, should have scope provided -->
         <dependency>