add * <exclusions> to srm-shell POM 98/73298/1
authorMichael Vorburger <vorburger@redhat.com>
Thu, 21 Jun 2018 10:27:14 +0000 (12:27 +0200)
committerMichael Vorburger <vorburger@redhat.com>
Thu, 21 Jun 2018 10:27:14 +0000 (12:27 +0200)
This avoids the following in target/feature/feature.xml :

  <bundle>mvn:org.fusesource.jansi/jansi/1.17</bundle>
  <bundle>mvn:org.apache.karaf.jaas/org.apache.karaf.jaas.boot/4.1.5</bundle>

The idea being that perhaps this causes some timing issues duirng
feature resolution related to the failing distribution.. just a
suspicion, not proven, as that problem does not locally reproduce.

Change-Id: I71deaffac703266bcb870cf55c8f8c72e73987b8
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
srm/shell/pom.xml

index 72177e1b369346e03a4ef335b9bc427b62c9a442..67ea566c497c432682c6186039504a2e0c752e33 100644 (file)
@@ -37,6 +37,12 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
     <dependency>
       <groupId>org.apache.karaf.shell</groupId>
       <artifactId>org.apache.karaf.shell.console</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>*</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
+      </exclusions>
    </dependency>
   </dependencies>
 </project>