forked from openhab/openhab1-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
68 lines (61 loc) · 2.27 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.openhab</groupId>
<artifactId>openhab</artifactId>
<version>1.5.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.openhab</groupId>
<artifactId>bundles</artifactId>
<name>openHAB Bundles</name>
<packaging>pom</packaging>
<modules>
<module>action</module>
<module>binding</module>
<module>config</module>
<module>core</module>
<module>designer</module>
<module>io</module>
<module>library</module>
<module>model</module>
<module>persistence</module>
<module>ui</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>jdeb</artifactId>
<groupId>org.vafer</groupId>
<version>1.0.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jdeb</goal>
</goals>
<configuration>
<controlDir>${basedir}/../../../distribution/src/deb/control-addons</controlDir>
<deb>${basedir}/target/${deb.name}-${project.version}.deb</deb>
<dataSet>
<data>
<src>${basedir}/target/${project.artifactId}-${project.version}.jar</src>
<type>file</type>
<mapper>
<type>perm</type>
<prefix>/opt/openhab/addons</prefix>
<user>root</user>
<group>root</group>
<filemode>644</filemode>
</mapper>
</data>
</dataSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>