mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
371d743bff
- using an ESH release build (0.10.0.b1) - added ESH release p2 repos for release builds - removed targetplatform, which afaics isn't used at all anymore Signed-off-by: Kai Kreuzer <kai@openhab.org>
76 lines
2.3 KiB
XML
76 lines
2.3 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab</groupId>
|
|
<artifactId>pom-tycho</artifactId>
|
|
<version>2.2.0-SNAPSHOT</version>
|
|
<relativePath>poms/tycho/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<groupId>org.openhab.core</groupId>
|
|
<artifactId>pom</artifactId>
|
|
<version>2.2.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>openHAB</name>
|
|
<description>This project contains the core components of openHAB</description>
|
|
|
|
<properties>
|
|
<scm.gitBaseUrl>https://github.com/openhab</scm.gitBaseUrl>
|
|
</properties>
|
|
|
|
<organization>
|
|
<name>openHAB.org</name>
|
|
<url>http://www.openhab.org</url>
|
|
</organization>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Eclipse Public License</name>
|
|
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<connection>scm:git:${scm.gitBaseUrl}/openhab-core.git</connection>
|
|
<developerConnection>scm:git:${scm.gitBaseUrl}/openhab-core.git</developerConnection>
|
|
<url>${scm.gitBaseUrl}/openhab-core</url>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<url>https://github.com/openhab/openhab-core/issues</url>
|
|
<system>Github</system>
|
|
</issueManagement>
|
|
|
|
<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>
|
|
|
|
<modules>
|
|
<module>poms</module>
|
|
<module>poms/tycho</module>
|
|
<module>bundles</module>
|
|
<module>features</module>
|
|
</modules>
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.commonjava.maven.plugins</groupId>
|
|
<artifactId>directory-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|