You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2022/08/04 11:08:28 UTC

[sling-org-apache-sling-feature-cpconverter] 01/01: SLING-11396 use the libs folder from appsassembler

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

kwin pushed a commit to branch bugfix/use-libs-from-appassembler
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-cpconverter.git

commit 749b35e572366d0d384131029b9c652a396d037f
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Thu Aug 4 13:08:22 2022 +0200

    SLING-11396 use the libs folder from appsassembler
---
 src/main/assembly/bin.xml | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/src/main/assembly/bin.xml b/src/main/assembly/bin.xml
index fca39ee..b86acde 100644
--- a/src/main/assembly/bin.xml
+++ b/src/main/assembly/bin.xml
@@ -57,15 +57,11 @@
       <fileMode>755</fileMode>
       <directoryMode>755</directoryMode>
     </fileSet>
-  </fileSets>
-
-  <dependencySets>
-    <dependencySet>
+    <!-- dependencies (as identified by appassembler) -->
+    <fileSet>
+      <directory>${project.build.directory}/appassembler/lib/</directory>
       <outputDirectory>lib</outputDirectory>
-      <scope>compile</scope>
-      <useTransitiveDependencies>true</useTransitiveDependencies>
-      <useProjectArtifact>true</useProjectArtifact>
-    </dependencySet>
-  </dependencySets>
+    </fileSet>
+  </fileSets>
 
 </assembly>