2018-09-10 13:45:11 +02:00
|
|
|
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-01-26 09:47:44 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab</groupId>
|
|
|
|
<artifactId>pom-tycho</artifactId>
|
2018-05-28 01:54:21 +02:00
|
|
|
<version>2.4.0-SNAPSHOT</version>
|
2018-09-10 13:45:11 +02:00
|
|
|
<relativePath>poms/tycho/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.openhab.core</groupId>
|
|
|
|
<artifactId>pom</artifactId>
|
|
|
|
<version>2.4.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<name>openHAB</name>
|
|
|
|
<description>This project contains the core components of openHAB</description>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<organization>
|
|
|
|
<name>openHAB.org</name>
|
|
|
|
<url>http://www.openhab.org</url>
|
|
|
|
</organization>
|
2017-09-21 08:18:23 +02:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Eclipse Public License</name>
|
|
|
|
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<modules>
|
|
|
|
<module>poms</module>
|
|
|
|
<module>poms/tycho</module>
|
|
|
|
<module>bundles</module>
|
|
|
|
<module>features</module>
|
|
|
|
</modules>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:${scm.gitBaseUrl}/openhab-core.git</connection>
|
|
|
|
<developerConnection>scm:git:${scm.gitBaseUrl}/openhab-core.git</developerConnection>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
<url>${scm.gitBaseUrl}/openhab-core</url>
|
|
|
|
</scm>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<issueManagement>
|
|
|
|
<system>Github</system>
|
|
|
|
<url>https://github.com/openhab/openhab-core/issues</url>
|
|
|
|
</issueManagement>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>bintray</id>
|
|
|
|
<url>https://api.bintray.com/maven/openhab/mvn/openhab-core/;publish=1</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>jfrog</id>
|
|
|
|
<url>https://openhab.jfrog.io/openhab/libs-snapshot-local</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<properties>
|
|
|
|
<scm.gitBaseUrl>https://github.com/openhab</scm.gitBaseUrl>
|
|
|
|
</properties>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.openhab.tools.sat</groupId>
|
|
|
|
<artifactId>sat-plugin</artifactId>
|
|
|
|
<version>${sat.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<checkstyleProperties>${basedirRoot}/tools/checkstyle.properties</checkstyleProperties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.commonjava.maven.plugins</groupId>
|
|
|
|
<artifactId>directory-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-09-21 08:18:23 +02:00
|
|
|
|
2015-12-20 22:32:25 +01:00
|
|
|
</project>
|