SLING-11396 use the libs folder from appsassembler (#144)

diff --git a/pom.xml b/pom.xml
index 73b48ec..8965409 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,8 +63,8 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <scope>compile</scope>
-      <!-- make optional to not transitively pollute class loaders -->
+      <!-- make runtime and optional to not transitively pollute compile class loaders -->
+      <scope>runtime</scope>
       <optional>true</optional>
     </dependency>
 
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>