mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
98cdac709c
Signed-off-by: Kai Kreuzer <kai@openhab.org>
249 lines
9.1 KiB
XML
249 lines
9.1 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>
|
|
|
|
<prerequisites>
|
|
<maven>3.0</maven>
|
|
</prerequisites>
|
|
|
|
<groupId>org.openhab.core</groupId>
|
|
<artifactId>pom</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>openHAB</name>
|
|
<description>This project contains the core components of openHAB</description>
|
|
|
|
<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:https://github.com/kaikreuzer/openhab-core.git</connection>
|
|
<developerConnection>scm:git:https://github.com/kaikreuzer/openhab-core.git</developerConnection>
|
|
<url>https://github.com/kaikreuzer/openhab-core</url>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<url>https://github.com/kaikreuzer/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>http://oss.jfrog.org/artifactory/oss-snapshot-local</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
|
|
|
|
<ohdr.version>1.0.0</ohdr.version>
|
|
<esh.version>0.8.0-SNAPSHOT</esh.version>
|
|
<shk.version>1.2</shk.version>
|
|
<jupnp.version>2.1.0</jupnp.version>
|
|
<jmdns.version>3.4.3</jmdns.version>
|
|
<dep.karaf.version>4.0.3</dep.karaf.version>
|
|
<karaf.maven.plugin.version>4.0.3</karaf.maven.plugin.version>
|
|
<karaf.features.version>4.0.3</karaf.features.version>
|
|
<maven.compiler.plugin.version>3.3</maven.compiler.plugin.version>
|
|
<build.helper.maven.plugin.version>1.9.1</build.helper.maven.plugin.version>
|
|
<license.maven.plugin.version>2.10</license.maven.plugin.version>
|
|
<tycho-version>0.24.0</tycho-version>
|
|
<tycho-groupid>org.eclipse.tycho</tycho-groupid>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>poms</module>
|
|
<module>bundles</module>
|
|
<module>features</module>
|
|
<module>targetplatform</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-maven-plugin</artifactId>
|
|
<version>${tycho-version}</version>
|
|
<extensions>true</extensions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.karaf.tooling</groupId>
|
|
<artifactId>karaf-maven-plugin</artifactId>
|
|
<version>${karaf.maven.plugin.version}</version>
|
|
<extensions>true</extensions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.5.5</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven.compiler.plugin.version}</version>
|
|
<configuration>
|
|
<source>${maven.compiler.source}</source>
|
|
<target>${maven.compiler.target}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>${build.helper.maven.plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>${tycho-groupid}</groupId>
|
|
<artifactId>tycho-versions-plugin</artifactId>
|
|
<version>${tycho-version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.mycila</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<version>${license.maven.plugin.version}</version>
|
|
<configuration>
|
|
<basedir>${basedir}</basedir>
|
|
<header>src/etc/header.txt</header>
|
|
<quiet>false</quiet>
|
|
<failIfMissing>true</failIfMissing>
|
|
<strictCheck>true</strictCheck>
|
|
<aggregate>true</aggregate>
|
|
<includes>
|
|
<include>**/org/openhab/**/*.java</include>
|
|
<include>**/feature.xml</include>
|
|
<include>**/OSGI-INF/*.xml</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>target/**</exclude>
|
|
<exclude>**/pom.xml</exclude>
|
|
<exclude>_*.java</exclude>
|
|
</excludes>
|
|
<useDefaultExcludes>true</useDefaultExcludes>
|
|
<properties>
|
|
<year>2015</year>
|
|
</properties>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<repositories>
|
|
<!-- openHAB releases -->
|
|
<repository>
|
|
<id>jcenter</id>
|
|
<name>JCenter Repository</name>
|
|
<url>https://jcenter.bintray.com/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>jmdns-bintray</id>
|
|
<name>Bintray Repository for openhab</name>
|
|
<url>https://dl.bintray.com/jmdns/mvn</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<!-- openHAB snapshots -->
|
|
<repository>
|
|
<id>jfrog</id>
|
|
<name>JFrog OSS Repository</name>
|
|
<url>http://oss.jfrog.org/libs-snapshot/</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<!-- ESH releases -->
|
|
<repository>
|
|
<id>eclipse-releases</id>
|
|
<name>Eclipse Release Repository</name>
|
|
<layout>default</layout>
|
|
<url>https://repo.eclipse.org/content/repositories/releases/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<!-- ESH Snapshots -->
|
|
<repository>
|
|
<id>eclipse-snapshots</id>
|
|
<name>Eclipse Snapshot Repository</name>
|
|
<layout>default</layout>
|
|
<url>https://repo.eclipse.org/content/repositories/snapshots/</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<!-- SHK releases -->
|
|
<repository>
|
|
<id>shk-bintray</id>
|
|
<name>Bintray Repository for shk</name>
|
|
<url>https://dl.bintray.com/maggu2810/maven</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project>
|