openhab-addons/bundles/org.openhab.binding.linuxinput/pom.xml

55 lines
1.7 KiB
XML
Raw Normal View History

<?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 https://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>5.0.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>