-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
102 lines (95 loc) · 3.05 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.incquerylabs.smarthome</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<name>Smart OpenHAB</name>
<version>0.1.0</version>
<properties>
<project.version>0.1.0</project.version>
<tycho.version>1.0.0</tycho.version>
<module.packaging>bundle</module.packaging>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<pluginRepositories>
<pluginRepository>
<id>tycho-snapshots</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<target>
<artifact>
<groupId>com.incquerylabs.smarthome</groupId>
<artifactId>com.incquerylabs.smarthome.target</artifactId>
<version>0.1.0</version>
<relativePath>releng/com.incquerylabs.smarthome.target/pom.xml</relativePath>
</artifact>
</target>
<environments>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>all</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>releng/com.incquerylabs.smarthome.target</module>
<module>runtime/com.incquerylabs.smarthome.eventbus.api</module>
<module>runtime/com.incquerylabs.smarthome.eventbus.logger</module>
<module>runtime/com.incquerylabs.smarthome.eventbus.ruleengine.droolshomeio</module>
<module>runtime/com.incquerylabs.smarthome.eventbus.ruleengine.drools</module>
<module>runtime/com.incquerylabs.smarthome.eventbus.service</module>
<module>demo/com.incquerylabs.smarthome.demorules.homeio</module>
<module>sensors/com.incquerylabs.smarthome.binding.simple-motion-sensor</module>
</modules>
<properties>
<module.packaging>eclipse-plugin</module.packaging>
</properties>
</profile>
</profiles>
</project>