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 <[email protected]> Authored: Wed Aug 17 11:22:34 2016 +0200 Committer: Christian Schneider <[email protected]> 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>
