forked from openhab/openhab-distro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Karaf 4.2.1 broken SSH output using an override (openhab#800)
Fixes openhab#764 Signed-off-by: Wouter Born <[email protected]>
- Loading branch information
1 parent
c9d8079
commit da428cf
Showing
5 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mvn:org.apache.karaf.shell/org.apache.karaf.shell.ssh/4.2.1-sp1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.openhab.distro</groupId> | ||
<artifactId>pom-features</artifactId> | ||
<version>2.4.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>overrides</artifactId> | ||
<packaging>feature</packaging> | ||
<name>openHAB Overrides</name> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.karaf.tooling</groupId> | ||
<artifactId>karaf-maven-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<startLevel>80</startLevel> | ||
<enableGeneration>true</enableGeneration> | ||
<aggregateFeatures>true</aggregateFeatures> | ||
<checkDependencyChange>true</checkDependencyChange> | ||
<failOnDependencyChange>false</failOnDependencyChange> | ||
<logDependencyChanges>true</logDependencyChanges> | ||
<overwriteChangedDependencies>true</overwriteChangedDependencies> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>generate-features-file</id> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>features-generate-descriptor</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<features name="${project.artifactId}-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.4.0"> | ||
<feature name="openhab-overrides" description="force to bundle packages" version="${project.version}" hidden="true"> | ||
<bundle dependency="true">mvn:org.apache.karaf.shell/org.apache.karaf.shell.ssh/4.2.1-sp1</bundle> | ||
</feature> | ||
</features> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters