You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2019/06/07 12:04:11 UTC

[sling-org-apache-sling-feature-io] branch master updated: SLING-8417 : Review Feature Analyser and IO imports

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6a1931d  SLING-8417 : Review Feature Analyser and IO imports
6a1931d is described below

commit 6a1931d6e7462470741532bf7e412aee52729df0
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Fri Jun 7 14:03:59 2019 +0200

    SLING-8417 : Review Feature Analyser and IO imports
---
 pom.xml | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0339ee3..05b9890 100644
--- a/pom.xml
+++ b/pom.xml
@@ -94,6 +94,29 @@
                     </validations>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <version>3.2.1</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <createSourcesJar>true</createSourcesJar>
+                            <shadeSourcesContent>true</shadeSourcesContent>
+                            <relocations>
+                                <relocation>
+                                    <pattern>org.apache.felix</pattern>
+                                    <shadedPattern>org.apache.sling.feature.io.impl.felix</shadedPattern>
+                                </relocation>
+                            </relocations>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 
@@ -107,7 +130,7 @@
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.configurator</artifactId>
-            <version>1.0.4</version>
+            <version>1.0.8</version>
             <scope>provided</scope>
         </dependency>
         <dependency>