2015-12-20 22:32:25 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
<parent>
|
2017-04-07 12:42:23 +02:00
|
|
|
<groupId>org.openhab</groupId>
|
2015-12-20 22:32:25 +01:00
|
|
|
<artifactId>pom-tycho</artifactId>
|
2017-01-20 10:48:55 +01:00
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
2015-12-20 22:32:25 +01:00
|
|
|
<relativePath>../../poms/tycho/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-12-27 22:57:41 +01:00
|
|
|
<groupId>org.openhab.core.features</groupId>
|
2015-12-20 22:32:25 +01:00
|
|
|
<artifactId>org.openhab.repo</artifactId>
|
|
|
|
|
2016-02-22 19:44:56 +01:00
|
|
|
<name>openHAB Core P2 Repository</name>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
|
|
|
<packaging>eclipse-repository</packaging>
|
|
|
|
|
2016-02-22 19:44:56 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.4.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-resources</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/filtered-resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>**/*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
2015-12-20 22:32:25 +01:00
|
|
|
</project>
|