mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +01:00
ecac667258
Signed-off-by: Wouter Born <github@maindrain.net>
55 lines
1.7 KiB
XML
55 lines
1.7 KiB
XML
<?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.addons.bundles</groupId>
|
|
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
|
|
<version>3.1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.binding.linuxinput</artifactId>
|
|
|
|
<name>openHAB Add-ons :: Bundles :: LinuxInput Binding</name>
|
|
|
|
<properties>
|
|
<bnd.importpackage>jnr.ffi.provider;version=!,jnr.ffi.provider.jffi;version=!,com.kenai.jffi;version=!,jnr.ffi.provider.converters</bnd.importpackage>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.jnr</groupId>
|
|
<artifactId>jffi</artifactId>
|
|
<version>1.2.18</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- we need this for RPi hardfloat abi -->
|
|
<dependency>
|
|
<groupId>com.github.jnr</groupId>
|
|
<artifactId>jffi</artifactId>
|
|
<version>1.2.18</version>
|
|
<classifier>native</classifier>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.jnr</groupId>
|
|
<artifactId>jnr-enxio</artifactId>
|
|
<version>0.19</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.jnr</groupId>
|
|
<artifactId>jnr-posix</artifactId>
|
|
<version>3.0.47</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|