You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ra...@apache.org on 2021/05/19 13:13:30 UTC

[sling-org-apache-sling-xss] branch master updated: SLING-10397 - Update to Sling Bundle Parent 41

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

radu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-xss.git


The following commit(s) were added to refs/heads/master by this push:
     new 9298a2d  SLING-10397 - Update to Sling Bundle Parent 41
9298a2d is described below

commit 9298a2d964dbfb128d38db47df69569e3c95b7b6
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Wed May 19 15:13:22 2021 +0200

    SLING-10397 - Update to Sling Bundle Parent 41
    
    * Upgrade to parent version 41, version 40 is affected by SLING-9972
    * ignore unresolvable references from embedded classes
    * keep embedding known needed dependencies
    
    Co-authored-by: Konrad Windszus <kw...@apache.org>
    Co-authored-by: Radu Cotescu <ra...@apache.org>
---
 pom.xml | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 07fac78..630b908 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.sling</groupId>
         <artifactId>sling-bundle-parent</artifactId>
-        <version>40</version>
+        <version>41</version>
         <relativePath />
     </parent>
 
@@ -63,6 +63,20 @@
                         </excludes>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>animal-sniffer-maven-plugin</artifactId>
+                    <configuration>
+                        <!-- ignore class files referenced from classes copied over to target/classes by bnd-maven-plugin -->
+                        <ignores>
+                            <ignore>org.apache.xml.*</ignore>
+                            <ignore>org.apache.commons.*</ignore>
+                            <ignore>javax.servlet.jsp.*</ignore>
+                            <ignore>org.apache.avalon.*</ignore> 
+                            <ignore>org.apache.log.*</ignore> 
+                        </ignores>
+                    </configuration>
+                </plugin>
             </plugins>
         </pluginManagement>