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 2021/07/13 15:56:44 UTC

[jackrabbit-filevault] branch master updated: JCRVLT-546 only increase minor version of o.a.j.v.fs as the removed (#157)

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

kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git


The following commit(s) were added to refs/heads/master by this push:
     new e23008f  JCRVLT-546 only increase minor version of o.a.j.v.fs as the removed (#157)
e23008f is described below

commit e23008f947d515e7776071861898bc57ff1b8c70
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Tue Jul 13 17:56:35 2021 +0200

    JCRVLT-546 only increase minor version of o.a.j.v.fs as the removed (#157)
    
    classes could have never been referenced from other bundles in an OSGi
    environment (due to private super class)
---
 vault-core/pom.xml                                                 | 7 +++++++
 .../src/main/java/org/apache/jackrabbit/vault/fs/package-info.java | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/vault-core/pom.xml b/vault-core/pom.xml
index c9c9bde..4ec9a2e 100644
--- a/vault-core/pom.xml
+++ b/vault-core/pom.xml
@@ -71,6 +71,13 @@
             <plugin>
                 <groupId>biz.aQute.bnd</groupId>
                 <artifactId>bnd-baseline-maven-plugin</artifactId>
+                <configuration>
+                    <diffpackages>
+                        <!-- temporarily ignore baseline violation for o.a.j.v.fs due to https://issues.apache.org/jira/browse/JCRVLT-546?focusedCommentId=17379780&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17379780 -->
+                        <diffpackage>!org.apache.jackrabbit.vault.fs</diffpackage>
+                        <diffpackage>*</diffpackage>
+                    </diffpackages>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
diff --git a/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/package-info.java b/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/package-info.java
index dc2c0d2..79fa1f7 100644
--- a/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/package-info.java
+++ b/vault-core/src/main/java/org/apache/jackrabbit/vault/fs/package-info.java
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-@Version("3.0.0")
+@Version("2.5.0")
 package org.apache.jackrabbit.vault.fs;
 
 import org.osgi.annotation.versioning.Version;
\ No newline at end of file