openhab-core/pom.xml
Kai Kreuzer 10acf5cf46 Changed license from EPL v1 to EPL v2 (#466)
* updated license headers
* added NOTICE files
* moved about.html to NOTICE files
* changed main project license
* updated build.properties
* added files to check to prevent error about missing about.html
* removed license info on p2 feature

Signed-off-by: Kai Kreuzer <kai@openhab.org>
2019-01-16 22:59:49 +01:00

88 lines
2.6 KiB
XML

<?xml version="1.0" encoding="UTF-8" standalone="no"?><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>
<parent>
<groupId>org.openhab</groupId>
<artifactId>pom-tycho</artifactId>
<version>2.5.0-SNAPSHOT</version>
<relativePath>poms/tycho/pom.xml</relativePath>
</parent>
<groupId>org.openhab.core</groupId>
<artifactId>pom</artifactId>
<version>2.5.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>
<modules>
<module>poms</module>
<module>poms/tycho</module>
<module>bundles</module>
<module>features</module>
</modules>
<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>
<issueManagement>
<system>Github</system>
<url>https://github.com/openhab/openhab-core/issues</url>
</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>
<properties>
<scm.gitBaseUrl>https://github.com/openhab</scm.gitBaseUrl>
</properties>
<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>
<checkstyleFilter>${basedirRoot}/tools/suppressions.xml</checkstyleFilter>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>directory-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>