You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by cs...@apache.org on 2016/08/17 09:31:31 UTC

karaf git commit: Make jansi optional

Repository: karaf
Updated Branches:
  refs/heads/master 50297a42d -> 52e091d37


Make jansi optional


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/52e091d3
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/52e091d3
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/52e091d3

Branch: refs/heads/master
Commit: 52e091d37e54714c96ecbfd45b9ca82e95c7a08b
Parents: 50297a4
Author: Christian Schneider <ch...@die-schneider.net>
Authored: Wed Aug 17 11:22:34 2016 +0200
Committer: Christian Schneider <ch...@die-schneider.net>
Committed: Wed Aug 17 11:23:12 2016 +0200

----------------------------------------------------------------------
 shell/table/pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/52e091d3/shell/table/pom.xml
----------------------------------------------------------------------
diff --git a/shell/table/pom.xml b/shell/table/pom.xml
index 99f1ea7..08d0990 100644
--- a/shell/table/pom.xml
+++ b/shell/table/pom.xml
@@ -49,6 +49,11 @@
             <version>2.4</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.fusesource.jansi</groupId>
+            <artifactId>jansi</artifactId>
+            <optional>true</optional>
+        </dependency>
     </dependencies>
 
     <build>
@@ -56,11 +61,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-		        <configuration>
-		            <instructions>
-		                <Import-Package>org.fusesource.jansi;version="[1.9,2)",*</Import-Package>
-		            </instructions>
-	            </configuration>
             </plugin>
         </plugins>
     </build>