mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-30 17:12:01 +01:00
f699c8526e
Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
76 lines
2.3 KiB
XML
76 lines
2.3 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 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.sbus</artifactId>
|
|
|
|
<name>openHAB Add-ons :: Bundles :: SBUS Binding</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ro.ciprianpascu</groupId>
|
|
<artifactId>j2sbus</artifactId>
|
|
<version>1.5.3-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>embed-dependencies</id>
|
|
<goals>
|
|
<goal>unpack-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includeArtifactIds>j2sbus</includeArtifactIds>
|
|
<outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
<artifactId>bnd-maven-plugin</artifactId>
|
|
<configuration>
|
|
<bnd><![CDATA[
|
|
Bundle-SymbolicName: ${project.artifactId}
|
|
Bundle-Version: ${project.version}
|
|
Import-Package: \
|
|
!ro.ciprianpascu.*, \
|
|
org.openhab.core.*, \
|
|
org.eclipse.jdt.annotation;resolution:=optional, \
|
|
*
|
|
Private-Package: \
|
|
ro.ciprianpascu.sbus.*
|
|
-exportcontents: org.openhab.binding.sbus.*
|
|
-dsannotations: *
|
|
-dsannotations-options: norequirements
|
|
-noimportjava: true
|
|
]]></bnd>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>bnd-process</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|