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 10:12:22 UTC

[jackrabbit-filevault] branch feature/JCRVLT-546-minor-version-increase created (now b0ea633)

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

kwin pushed a change to branch feature/JCRVLT-546-minor-version-increase
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git.


      at b0ea633  JCRVLT-546 only increase minor version of o.a.j.v.fs as the removed classes could have never been referenced from other bundles in an OSGi environment (due to private super class)

This branch includes the following new commits:

     new b0ea633  JCRVLT-546 only increase minor version of o.a.j.v.fs as the removed classes could have never been referenced from other bundles in an OSGi environment (due to private super class)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[jackrabbit-filevault] 01/01: JCRVLT-546 only increase minor version of o.a.j.v.fs as the removed classes could have never been referenced from other bundles in an OSGi environment (due to private super class)

Posted by kw...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch feature/JCRVLT-546-minor-version-increase
in repository https://gitbox.apache.org/repos/asf/jackrabbit-filevault.git

commit b0ea633a55e4315099e823632b24244438b01718
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Tue Jul 13 12:12:08 2021 +0200

    JCRVLT-546 only increase minor version of o.a.j.v.fs as the removed
    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