Skip to content

Commit

Permalink
[boschindigo] Fix dependency version for indego library (openhab#7288)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan N. Klug <[email protected]>
  • Loading branch information
J-N-K authored and markus7017 committed Sep 18, 2020
1 parent e3e6d76 commit d39d4c9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions bundles/org.openhab.binding.boschindego/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,35 @@

<name>openHAB Add-ons :: Bundles :: Bosch Indego Binding</name>

<properties>
<dep.noembedding>httpclient-osgi,httpcore-osgi,commons-codec</dep.noembedding>
</properties>

<dependencies>
<dependency>
<groupId>de.zazaz.iot.bosch.indego</groupId>
<artifactId>bosch-indego-controller-lib</artifactId>
<version>0.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<version>4.5.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-osgi</artifactId>
<version>4.4.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
<scope>compile</scope>
</dependency>
</dependencies>

</project>

0 comments on commit d39d4c9

Please sign in to comment.