mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-25 11:45:49 +01:00
Apply POM Code Convention (#392)
Applies the POM Code Covention as used in OH2/ESH projects. See also: https://maven.apache.org/developers/conventions/code.html The executed command is: mvn \ com.github.ekryd.sortpom:sortpom-maven-plugin:sort \ -Dsort.keepBlankLines=true \ -Dsort.predefinedSortOrder=recommended_2008_06 Signed-off-by: Wouter Born <eclipse@maindrain.net>
This commit is contained in:
parent
dbed3db57d
commit
8091914a4b
@ -1,4 +1,5 @@
|
||||
<?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">
|
||||
<?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>
|
||||
|
||||
@ -9,9 +10,9 @@
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.core.compat1x.test</artifactId>
|
||||
<packaging>eclipse-test-plugin</packaging>
|
||||
|
||||
<name>openHAB Core 1.x Compatibility Layer Tests</name>
|
||||
<packaging>eclipse-test-plugin</packaging>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
@ -19,7 +20,7 @@
|
||||
<groupId>${tycho-groupid}</groupId>
|
||||
<artifactId>target-platform-configuration</artifactId>
|
||||
<configuration>
|
||||
<environments combine.self="override"/>
|
||||
<environments combine.self="override"></environments>
|
||||
<dependency-resolution>
|
||||
<extraRequirements>
|
||||
<requirement>
|
||||
@ -62,5 +63,5 @@
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
||||
</project>
|
||||
|
@ -1,4 +1,5 @@
|
||||
<?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">
|
||||
<?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>
|
||||
|
||||
@ -9,8 +10,8 @@
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.core.compat1x</artifactId>
|
||||
|
||||
<name>openHAB Core 1.x Compatibility Layer</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<name>openHAB Core 1.x Compatibility Layer</name>
|
||||
|
||||
</project>
|
||||
|
@ -1,93 +1,94 @@
|
||||
<?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">
|
||||
<?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>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.core.karaf</artifactId>
|
||||
<artifactId>org.openhab.core.karaf</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<name>openHAB Karaf Integration</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB Karaf Integration</name>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.features</groupId>
|
||||
<artifactId>org.apache.karaf.features.core</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.shell</groupId>
|
||||
<artifactId>org.apache.karaf.shell.core</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.wrapper</groupId>
|
||||
<artifactId>org.apache.karaf.wrapper.core</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.features</groupId>
|
||||
<artifactId>org.apache.karaf.features.core</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.shell</groupId>
|
||||
<artifactId>org.apache.karaf.shell.core</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.wrapper</groupId>
|
||||
<artifactId>org.apache.karaf.wrapper.core</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-compiler-plugin</artifactId>
|
||||
<versionRange>[1.0.0,)</versionRange>
|
||||
<goals>
|
||||
<goal>compile</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore/>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<versionRange>[3.6.1,)</versionRange>
|
||||
<goals>
|
||||
<goal>compile</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore/>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<versionRange>[1.0.0,)</versionRange>
|
||||
<goals>
|
||||
<goal>build-qualifier</goal>
|
||||
<goal>validate-id</goal>
|
||||
<goal>validate-version</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore/>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-compiler-plugin</artifactId>
|
||||
<versionRange>[1.0.0,)</versionRange>
|
||||
<goals>
|
||||
<goal>compile</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore></ignore>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<versionRange>[3.6.1,)</versionRange>
|
||||
<goals>
|
||||
<goal>compile</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore></ignore>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<versionRange>[1.0.0,)</versionRange>
|
||||
<goals>
|
||||
<goal>build-qualifier</goal>
|
||||
<goal>validate-id</goal>
|
||||
<goal>validate-version</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore></ignore>
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
|
@ -1,4 +1,5 @@
|
||||
<?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">
|
||||
<?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>
|
||||
|
||||
@ -9,8 +10,8 @@
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.core</artifactId>
|
||||
|
||||
<name>openHAB Core</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<name>openHAB Core</name>
|
||||
|
||||
</project>
|
||||
|
@ -1,65 +1,66 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.io.jetty.certificate</artifactId>
|
||||
<name>openHAB SSL Certificate Generator</name>
|
||||
<artifactId>org.openhab.io.jetty.certificate</artifactId>
|
||||
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB SSL Certificate Generator</name>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bouncycastle</groupId>
|
||||
<artifactId>bcpkix-jdk15on</artifactId>
|
||||
<version>1.52</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bouncycastle</groupId>
|
||||
<artifactId>bcpkix-jdk15on</artifactId>
|
||||
<version>1.52</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>2.4.1</version>
|
||||
<configuration>
|
||||
<artifactSet>
|
||||
<includes>
|
||||
<include>org.bouncycastle:*</include>
|
||||
</includes>
|
||||
</artifactSet>
|
||||
<filters>
|
||||
<filter>
|
||||
<artifact>org.bouncycastle:*</artifact>
|
||||
<excludes>
|
||||
<!-- Exclude the JAR signing files -->
|
||||
<exclude>META-INF/BCKEY.*</exclude>
|
||||
</excludes>
|
||||
</filter>
|
||||
</filters>
|
||||
<minimizeJar>true</minimizeJar>
|
||||
<transformers>
|
||||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||||
<manifestEntries>
|
||||
<Bundle-Classpath>.</Bundle-Classpath>
|
||||
</manifestEntries>
|
||||
</transformer>
|
||||
</transformers>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>2.4.1</version>
|
||||
<configuration>
|
||||
<artifactSet>
|
||||
<includes>
|
||||
<include>org.bouncycastle:*</include>
|
||||
</includes>
|
||||
</artifactSet>
|
||||
<filters>
|
||||
<filter>
|
||||
<artifact>org.bouncycastle:*</artifact>
|
||||
<excludes>
|
||||
<!-- Exclude the JAR signing files -->
|
||||
<exclude>META-INF/BCKEY.*</exclude>
|
||||
</excludes>
|
||||
</filter>
|
||||
</filters>
|
||||
<minimizeJar>true</minimizeJar>
|
||||
<transformers>
|
||||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||||
<manifestEntries>
|
||||
<Bundle-Classpath>.</Bundle-Classpath>
|
||||
</manifestEntries>
|
||||
</transformer>
|
||||
</transformers>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
<phase>package</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
@ -1,14 +1,15 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>org.openhab.io.rest.docs</artifactId>
|
||||
|
||||
<artifactId>org.openhab.io.rest.docs</artifactId>
|
||||
<name>openHAB REST API Documentation</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB REST API Documentation</name>
|
||||
|
||||
</project>
|
||||
|
@ -1,14 +1,15 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>org.openhab.io.sound</artifactId>
|
||||
|
||||
<artifactId>org.openhab.io.sound</artifactId>
|
||||
<name>openHAB Sound Support</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB Sound Support</name>
|
||||
|
||||
</project>
|
||||
|
@ -1,16 +1,17 @@
|
||||
<?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">
|
||||
<?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>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.ui.basicui</artifactId>
|
||||
<artifactId>org.openhab.ui.basicui</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<name>openHAB Basic UI Dashboard Integration</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB Basic UI Dashboard Integration</name>
|
||||
|
||||
</project>
|
||||
|
@ -1,16 +1,17 @@
|
||||
<?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">
|
||||
<?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>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.ui.classicui</artifactId>
|
||||
<artifactId>org.openhab.ui.classicui</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<name>openHAB Classic UI Dashboard Integration</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB Classic UI Dashboard Integration</name>
|
||||
|
||||
</project>
|
||||
|
@ -1,13 +1,14 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.ui.dashboard</artifactId>
|
||||
<name>openHAB Dashboard UI</name>
|
||||
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB Dashboard UI</name>
|
||||
</project>
|
||||
|
@ -1,16 +1,17 @@
|
||||
<?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">
|
||||
<?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">
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.ui.homebuilder</artifactId>
|
||||
<artifactId>org.openhab.ui.homebuilder</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<name>openHAB HomeBuilder UI Dashboard Integration</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB HomeBuilder UI Dashboard Integration</name>
|
||||
|
||||
</project>
|
||||
|
@ -1,16 +1,17 @@
|
||||
<?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">
|
||||
<?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>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.ui.paperui</artifactId>
|
||||
<artifactId>org.openhab.ui.paperui</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<name>openHAB Paper UI Theme Fragment</name>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<name>openHAB Paper UI Theme Fragment</name>
|
||||
|
||||
</project>
|
||||
|
103
bundles/pom.xml
103
bundles/pom.xml
@ -1,4 +1,7 @@
|
||||
<?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">
|
||||
<?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>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
@ -6,15 +9,13 @@
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-bundles</artifactId>
|
||||
|
||||
<name>openHAB Bundles</name>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>openHAB Bundles</name>
|
||||
|
||||
<modules>
|
||||
<module>org.openhab.core</module>
|
||||
<module>org.openhab.core.compat1x</module>
|
||||
@ -31,51 +32,51 @@
|
||||
</modules>
|
||||
|
||||
<dependencies>
|
||||
<!-- Eclipse Smarthome dependencies specifically for the core -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.javasound</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.rest.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.basic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.classic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.paper</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule.runtime</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<!-- Eclipse Smarthome dependencies specifically for the core -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.javasound</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.rest.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.basic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.classic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.paper</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule.runtime</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
@ -1,36 +1,37 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-features</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-features</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>openhab-core</artifactId>
|
||||
<packaging>feature</packaging>
|
||||
<artifactId>openhab-core</artifactId>
|
||||
<packaging>feature</packaging>
|
||||
|
||||
<name>openHAB Karaf Features</name>
|
||||
<description>openHAB Core Features</description>
|
||||
<name>openHAB Karaf Features</name>
|
||||
<description>openHAB Core Features</description>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.karaf.tooling</groupId>
|
||||
<artifactId>karaf-maven-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<startLevel>80</startLevel>
|
||||
<aggregateFeatures>true</aggregateFeatures>
|
||||
<!-- <resolver>(obr)</resolver> -->
|
||||
<checkDependencyChange>true</checkDependencyChange>
|
||||
<failOnDependencyChange>false</failOnDependencyChange>
|
||||
<logDependencyChanges>true</logDependencyChanges>
|
||||
<overwriteChangedDependencies>true</overwriteChangedDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.karaf.tooling</groupId>
|
||||
<artifactId>karaf-maven-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<startLevel>80</startLevel>
|
||||
<aggregateFeatures>true</aggregateFeatures>
|
||||
<!-- <resolver>(obr)</resolver> -->
|
||||
<checkDependencyChange>true</checkDependencyChange>
|
||||
<failOnDependencyChange>false</failOnDependencyChange>
|
||||
<logDependencyChanges>true</logDependencyChanges>
|
||||
<overwriteChangedDependencies>true</overwriteChangedDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
@ -1,4 +1,7 @@
|
||||
<?xml version="1.0" encoding="MACROMAN" 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">
|
||||
<?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>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab</groupId>
|
||||
@ -6,61 +9,59 @@
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../poms/tycho/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>org.openhab.feature.p2</artifactId>
|
||||
|
||||
<name>openHAB p2 Feature</name>
|
||||
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<name>openHAB p2 Feature</name>
|
||||
|
||||
<dependencies>
|
||||
<!-- Eclipse Smarthome dependencies specifically for the core -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.javasound</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.rest.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.basic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.classic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.paper</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule.runtime</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<!-- Eclipse Smarthome dependencies specifically for the core -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.javasound</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.rest.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.basic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.classic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.paper</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule.runtime</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
|
@ -1,4 +1,7 @@
|
||||
<?xml version="1.0" encoding="MACROMAN" 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">
|
||||
<?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>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
@ -6,20 +9,18 @@
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-features</artifactId>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-features</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>openHAB Features</name>
|
||||
<name>openHAB Features</name>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>openhab-core</module>
|
||||
<module>verify-karaf</module>
|
||||
<module>p2</module>
|
||||
<module>repo</module>
|
||||
</modules>
|
||||
<modules>
|
||||
<module>openhab-core</module>
|
||||
<module>verify-karaf</module>
|
||||
<module>p2</module>
|
||||
<module>repo</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
|
@ -1,4 +1,7 @@
|
||||
<?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">
|
||||
<?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>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab</groupId>
|
||||
@ -6,93 +9,90 @@
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../poms/tycho/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.openhab.core.features</groupId>
|
||||
<artifactId>org.openhab.repo</artifactId>
|
||||
|
||||
<name>openHAB Core P2 Repository</name>
|
||||
|
||||
<packaging>eclipse-repository</packaging>
|
||||
|
||||
<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>
|
||||
<name>openHAB Core P2 Repository</name>
|
||||
|
||||
<dependencies>
|
||||
<!-- Eclipse Smarthome dependencies specifically for the core -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.javasound</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.rest.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.basic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.classic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.paper</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule.runtime</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<!-- Eclipse Smarthome dependencies specifically for the core -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.javasound</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.io</groupId>
|
||||
<artifactId>org.eclipse.smarthome.io.rest.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.basic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.classic</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
||||
<artifactId>org.eclipse.smarthome.ui.paper</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.rule.runtime</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome.model</groupId>
|
||||
<artifactId>org.eclipse.smarthome.model.sitemap</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<resources>
|
||||
<resource>
|
||||
<filtering>true</filtering>
|
||||
<directory>src/main/filtered-resources</directory>
|
||||
<includes>
|
||||
<include>**/*</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.4.3</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-resources</id>
|
||||
<goals>
|
||||
<goal>resources</goal>
|
||||
</goals>
|
||||
<phase>process-resources</phase>
|
||||
<configuration>
|
||||
<outputDirectory>${project.build.directory}</outputDirectory>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
@ -1,96 +1,97 @@
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
<?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/xsd/maven-4.0.0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-features</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom-features</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.openhab.features.karaf.verify</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<artifactId>org.openhab.features.karaf.verify</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>openHAB Karaf Feature Verification</name>
|
||||
<description>openHAB Core Feature Verification</description>
|
||||
<name>openHAB Karaf Feature Verification</name>
|
||||
<description>openHAB Core Feature Verification</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.features</groupId>
|
||||
<artifactId>framework</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
<type>kar</type>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome</groupId>
|
||||
<artifactId>esh-core</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
<classifier>features</classifier>
|
||||
<type>xml</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome</groupId>
|
||||
<artifactId>esh-tp</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
<classifier>features</classifier>
|
||||
<type>xml</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>openhab-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<classifier>features</classifier>
|
||||
<type>xml</type>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.karaf.features</groupId>
|
||||
<artifactId>framework</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
<type>kar</type>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome</groupId>
|
||||
<artifactId>esh-core</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
<classifier>features</classifier>
|
||||
<type>xml</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.smarthome</groupId>
|
||||
<artifactId>esh-tp</artifactId>
|
||||
<version>${esh.version}</version>
|
||||
<classifier>features</classifier>
|
||||
<type>xml</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>openhab-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<classifier>features</classifier>
|
||||
<type>xml</type>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.karaf.tooling</groupId>
|
||||
<artifactId>karaf-maven-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<startLevel>80</startLevel>
|
||||
<aggregateFeatures>true</aggregateFeatures>
|
||||
<!-- <resolver>(obr)</resolver> -->
|
||||
<checkDependencyChange>true</checkDependencyChange>
|
||||
<failOnDependencyChange>false</failOnDependencyChange>
|
||||
<logDependencyChanges>true</logDependencyChanges>
|
||||
<overwriteChangedDependencies>true</overwriteChangedDependencies>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>verify</id>
|
||||
<phase>process-resources</phase>
|
||||
<goals>
|
||||
<goal>verify</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features</descriptor>
|
||||
<descriptor>mvn:org.apache.karaf.features/standard/${karaf.version}/xml/features</descriptor>
|
||||
<descriptor>mvn:org.eclipse.smarthome/esh-core/${esh.version}/xml/features</descriptor>
|
||||
<descriptor>mvn:org.eclipse.smarthome/esh-tp/${esh.version}/xml/features</descriptor>
|
||||
<descriptor>mvn:org.openhab.core/openhab-core/${project.version}/xml/features</descriptor>
|
||||
</descriptors>
|
||||
<distribution>org.apache.karaf.features:framework</distribution>
|
||||
<javase>1.8</javase>
|
||||
<framework>
|
||||
<feature>framework</feature>
|
||||
</framework>
|
||||
<features>
|
||||
<feature>openhab-*</feature>
|
||||
</features>
|
||||
<verifyTransitive>false</verifyTransitive>
|
||||
<ignoreMissingConditions>true</ignoreMissingConditions>
|
||||
<fail>first</fail>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.karaf.tooling</groupId>
|
||||
<artifactId>karaf-maven-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<startLevel>80</startLevel>
|
||||
<aggregateFeatures>true</aggregateFeatures>
|
||||
<!-- <resolver>(obr)</resolver> -->
|
||||
<checkDependencyChange>true</checkDependencyChange>
|
||||
<failOnDependencyChange>false</failOnDependencyChange>
|
||||
<logDependencyChanges>true</logDependencyChanges>
|
||||
<overwriteChangedDependencies>true</overwriteChangedDependencies>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>verify</id>
|
||||
<goals>
|
||||
<goal>verify</goal>
|
||||
</goals>
|
||||
<phase>process-resources</phase>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features</descriptor>
|
||||
<descriptor>mvn:org.apache.karaf.features/standard/${karaf.version}/xml/features</descriptor>
|
||||
<descriptor>mvn:org.eclipse.smarthome/esh-core/${esh.version}/xml/features</descriptor>
|
||||
<descriptor>mvn:org.eclipse.smarthome/esh-tp/${esh.version}/xml/features</descriptor>
|
||||
<descriptor>mvn:org.openhab.core/openhab-core/${project.version}/xml/features</descriptor>
|
||||
</descriptors>
|
||||
<distribution>org.apache.karaf.features:framework</distribution>
|
||||
<javase>1.8</javase>
|
||||
<framework>
|
||||
<feature>framework</feature>
|
||||
</framework>
|
||||
<features>
|
||||
<feature>openhab-*</feature>
|
||||
</features>
|
||||
<verifyTransitive>false</verifyTransitive>
|
||||
<ignoreMissingConditions>true</ignoreMissingConditions>
|
||||
<fail>first</fail>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
147
pom.xml
147
pom.xml
@ -1,86 +1,87 @@
|
||||
<?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>
|
||||
<?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>
|
||||
|
||||
<parent>
|
||||
<groupId>org.openhab</groupId>
|
||||
<artifactId>pom-tycho</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<relativePath>poms/tycho/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom</artifactId>
|
||||
<parent>
|
||||
<groupId>org.openhab</groupId>
|
||||
<artifactId>pom-tycho</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<relativePath>poms/tycho/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<name>openHAB</name>
|
||||
<description>This project contains the core components of openHAB</description>
|
||||
<groupId>org.openhab.core</groupId>
|
||||
<artifactId>pom</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<properties>
|
||||
<scm.gitBaseUrl>https://github.com/openhab</scm.gitBaseUrl>
|
||||
</properties>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
<modules>
|
||||
<module>poms</module>
|
||||
<module>poms/tycho</module>
|
||||
<module>bundles</module>
|
||||
<module>features</module>
|
||||
</modules>
|
||||
|
||||
<issueManagement>
|
||||
<url>https://github.com/openhab/openhab-core/issues</url>
|
||||
<system>Github</system>
|
||||
</issueManagement>
|
||||
<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>
|
||||
|
||||
<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>
|
||||
<issueManagement>
|
||||
<system>Github</system>
|
||||
<url>https://github.com/openhab/openhab-core/issues</url>
|
||||
</issueManagement>
|
||||
|
||||
<modules>
|
||||
<module>poms</module>
|
||||
<module>poms/tycho</module>
|
||||
<module>bundles</module>
|
||||
<module>features</module>
|
||||
</modules>
|
||||
<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>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.commonjava.maven.plugins</groupId>
|
||||
<artifactId>directory-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
653
poms/pom.xml
653
poms/pom.xml
@ -1,251 +1,337 @@
|
||||
<?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>
|
||||
<?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>
|
||||
|
||||
<prerequisites>
|
||||
<maven>3.1</maven>
|
||||
</prerequisites>
|
||||
<groupId>org.openhab</groupId>
|
||||
<artifactId>pom</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
|
||||
<groupId>org.openhab</groupId>
|
||||
<artifactId>pom</artifactId>
|
||||
<version>2.4.0-SNAPSHOT</version>
|
||||
<name>openHAB</name>
|
||||
<packaging>pom</packaging>
|
||||
<name>openHAB</name>
|
||||
|
||||
<organization>
|
||||
<name>openHAB.org</name>
|
||||
<url>http://www.openhab.org</url>
|
||||
</organization>
|
||||
<description>This is the open Home Automation Bus (openHAB)</description>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Eclipse Public License</name>
|
||||
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
||||
</license>
|
||||
</licenses>
|
||||
<organization>
|
||||
<name>openHAB.org</name>
|
||||
<url>http://www.openhab.org</url>
|
||||
</organization>
|
||||
|
||||
<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>
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Eclipse Public License</name>
|
||||
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<issueManagement>
|
||||
<url>https://github.com/openhab/openhab-core/issues</url>
|
||||
<system>Github</system>
|
||||
</issueManagement>
|
||||
<prerequisites>
|
||||
<maven>3.1</maven>
|
||||
</prerequisites>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<scm.gitBaseUrl>https://github.com/openhab</scm.gitBaseUrl>
|
||||
<issueManagement>
|
||||
<system>Github</system>
|
||||
<url>https://github.com/openhab/openhab-core/issues</url>
|
||||
</issueManagement>
|
||||
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<maven.compiler.version>3.6.1</maven.compiler.version>
|
||||
<groovy.eclipse.compiler.version>2.9.2-01</groovy.eclipse.compiler.version>
|
||||
<groovy.eclipse.batch.version>2.4.3-01</groovy.eclipse.batch.version>
|
||||
<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>
|
||||
|
||||
<ohdr.version>1.0.31</ohdr.version>
|
||||
<esh.version>0.10.0-SNAPSHOT</esh.version>
|
||||
<repo.version>2.4.x</repo.version>
|
||||
<karaf.version>4.1.5</karaf.version>
|
||||
<jetty.version>9.3.21.v20170918</jetty.version>
|
||||
<jackson.version>1.9.13</jackson.version>
|
||||
<sat.version>0.5.0</sat.version>
|
||||
<nrjavaserial.version>3.14.0</nrjavaserial.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>1.0.0</tycho-version>
|
||||
<tycho-groupid>org.eclipse.tycho</tycho-groupid>
|
||||
<jdt-annotations.version>2.1.0</jdt-annotations.version>
|
||||
<ds-annotations.version>1.2.10</ds-annotations.version>
|
||||
</properties>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<scm.gitBaseUrl>https://github.com/openhab</scm.gitBaseUrl>
|
||||
|
||||
<description>This is the open Home Automation Bus (openHAB)</description>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<maven.compiler.version>3.6.1</maven.compiler.version>
|
||||
<groovy.eclipse.compiler.version>2.9.2-01</groovy.eclipse.compiler.version>
|
||||
<groovy.eclipse.batch.version>2.4.3-01</groovy.eclipse.batch.version>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
<ohdr.version>1.0.31</ohdr.version>
|
||||
<esh.version>0.10.0-SNAPSHOT</esh.version>
|
||||
<repo.version>2.4.x</repo.version>
|
||||
<karaf.version>4.1.5</karaf.version>
|
||||
<jetty.version>9.3.21.v20170918</jetty.version>
|
||||
<jackson.version>1.9.13</jackson.version>
|
||||
<sat.version>0.5.0</sat.version>
|
||||
<nrjavaserial.version>3.14.0</nrjavaserial.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>1.0.0</tycho-version>
|
||||
<tycho-groupid>org.eclipse.tycho</tycho-groupid>
|
||||
<jdt-annotations.version>2.1.0</jdt-annotations.version>
|
||||
<ds-annotations.version>1.2.10</ds-annotations.version>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.commonjava.maven.plugins</groupId>
|
||||
<artifactId>directory-maven-plugin</artifactId>
|
||||
<version>0.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>directories</id>
|
||||
<goals>
|
||||
<goal>highest-basedir</goal>
|
||||
</goals>
|
||||
<phase>initialize</phase>
|
||||
<configuration>
|
||||
<property>basedirRoot</property>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.karaf.tooling</groupId>
|
||||
<artifactId>karaf-maven-plugin</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
<extensions>true</extensions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>${build.helper.maven.plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.mycila</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>3.0</version>
|
||||
<configuration>
|
||||
<basedir>${basedir}</basedir>
|
||||
<header>src/etc/header.txt</header>
|
||||
<quiet>false</quiet>
|
||||
<failIfMissing>true</failIfMissing>
|
||||
<strictCheck>true</strictCheck>
|
||||
<aggregate>true</aggregate>
|
||||
<mapping>
|
||||
<xml>xml-header-style</xml>
|
||||
</mapping>
|
||||
<headerDefinitions>
|
||||
<headerDefinition>src/etc/xml-header-style.xml</headerDefinition>
|
||||
</headerDefinitions>
|
||||
<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>2018</year>
|
||||
</properties>
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>${tycho-groupid}</groupId>
|
||||
<artifactId>tycho-versions-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>3.0.1</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<supportedProjectTypes>
|
||||
<supportedProjectType>jar</supportedProjectType>
|
||||
<supportedProjectType>bundle</supportedProjectType>
|
||||
<supportedProjectType>eclipse-plugin</supportedProjectType>
|
||||
</supportedProjectTypes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-scr-plugin</artifactId>
|
||||
<version>1.24.0</version>
|
||||
<configuration>
|
||||
<supportedProjectTypes>
|
||||
<supportedProjectType>eclipse-plugin</supportedProjectType>
|
||||
</supportedProjectTypes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.itemis.maven.plugins</groupId>
|
||||
<artifactId>unleash-maven-plugin</artifactId>
|
||||
<version>2.8.0</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.itemis.maven.plugins</groupId>
|
||||
<artifactId>unleash-scm-provider-git</artifactId>
|
||||
<version>2.1.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
<repositories>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>prepare-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-versions-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>update-version</id>
|
||||
<phase>initialize</phase>
|
||||
<goals>
|
||||
<goal>set-version</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<!-- releases -->
|
||||
<repository>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>jcenter</id>
|
||||
<name>JCenter Repository</name>
|
||||
<url>https://jcenter.bintray.com/</url>
|
||||
</repository>
|
||||
|
||||
<profile>
|
||||
<id>prepare-next-snapshot</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-versions-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>update-version</id>
|
||||
<phase>initialize</phase>
|
||||
<goals>
|
||||
<goal>set-version</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<repository>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>bintray</id>
|
||||
<name>openHAB SmartHome Repository</name>
|
||||
<url>https://api.bintray.com/maven/openhab/mvn/smarthome</url>
|
||||
</repository>
|
||||
|
||||
<repository>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>openhab-artifactory-release</id>
|
||||
<name>JFrog Artifactory Repository</name>
|
||||
<url>https://openhab.jfrog.io/openhab/libs-release</url>
|
||||
</repository>
|
||||
|
||||
<!-- snapshots -->
|
||||
<repository>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
</snapshots>
|
||||
<id>openhab-artifactory-snapshot</id>
|
||||
<name>JFrog Artifactory Repository</name>
|
||||
<url>https://openhab.jfrog.io/openhab/libs-snapshot</url>
|
||||
</repository>
|
||||
|
||||
</repositories>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>jcenter</id>
|
||||
<name>JCenter Repository</name>
|
||||
<url>https://jcenter.bintray.com/</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<id>artifactory</id>
|
||||
<name>JFrog Artifactory Repository</name>
|
||||
<url>https://openhab.jfrog.io/openhab/libs-release</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.commonjava.maven.plugins</groupId>
|
||||
<artifactId>directory-maven-plugin</artifactId>
|
||||
<version>0.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>directories</id>
|
||||
<goals>
|
||||
<goal>highest-basedir</goal>
|
||||
</goals>
|
||||
<phase>initialize</phase>
|
||||
<configuration>
|
||||
<property>basedirRoot</property>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.karaf.tooling</groupId>
|
||||
<artifactId>karaf-maven-plugin</artifactId>
|
||||
<version>${karaf.version}</version>
|
||||
<extensions>true</extensions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>${build.helper.maven.plugin.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.mycila</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>3.0</version>
|
||||
<configuration>
|
||||
<basedir>${basedir}</basedir>
|
||||
<header>src/etc/header.txt</header>
|
||||
<quiet>false</quiet>
|
||||
<failIfMissing>true</failIfMissing>
|
||||
<strictCheck>true</strictCheck>
|
||||
<aggregate>true</aggregate>
|
||||
<mapping>
|
||||
<xml>xml-header-style</xml>
|
||||
</mapping>
|
||||
<headerDefinitions>
|
||||
<headerDefinition>src/etc/xml-header-style.xml</headerDefinition>
|
||||
</headerDefinitions>
|
||||
<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>2018</year>
|
||||
</properties>
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>${tycho-groupid}</groupId>
|
||||
<artifactId>tycho-versions-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>3.0.1</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<supportedProjectTypes>
|
||||
<supportedProjectType>jar</supportedProjectType>
|
||||
<supportedProjectType>bundle</supportedProjectType>
|
||||
<supportedProjectType>eclipse-plugin</supportedProjectType>
|
||||
</supportedProjectTypes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-scr-plugin</artifactId>
|
||||
<version>1.24.0</version>
|
||||
<configuration>
|
||||
<supportedProjectTypes>
|
||||
<supportedProjectType>eclipse-plugin</supportedProjectType>
|
||||
</supportedProjectTypes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.itemis.maven.plugins</groupId>
|
||||
<artifactId>unleash-maven-plugin</artifactId>
|
||||
<version>2.8.0</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.itemis.maven.plugins</groupId>
|
||||
<artifactId>unleash-scm-provider-git</artifactId>
|
||||
<version>2.1.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>versions-maven-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>prepare-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-versions-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>update-version</id>
|
||||
<goals>
|
||||
<goal>set-version</goal>
|
||||
</goals>
|
||||
<phase>initialize</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>prepare-next-snapshot</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-versions-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>update-version</id>
|
||||
<goals>
|
||||
<goal>set-version</goal>
|
||||
</goals>
|
||||
<phase>initialize</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<!-- static code analysis profiles -->
|
||||
<profile>
|
||||
@ -264,13 +350,13 @@
|
||||
<version>${sat.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>checkstyle</goal>
|
||||
<goal>pmd</goal>
|
||||
<goal>spotbugs</goal>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
<phase>verify</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
@ -288,9 +374,9 @@
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.openhab.tools.sat</groupId>
|
||||
<artifactId>sat-plugin</artifactId>
|
||||
<version>${sat.version}</version>
|
||||
<groupId>org.openhab.tools.sat</groupId>
|
||||
<artifactId>sat-plugin</artifactId>
|
||||
<version>${sat.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
@ -305,98 +391,13 @@
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.openhab.tools.sat</groupId>
|
||||
<artifactId>sat-plugin</artifactId>
|
||||
<version>${sat.version}</version>
|
||||
<groupId>org.openhab.tools.sat</groupId>
|
||||
<artifactId>sat-plugin</artifactId>
|
||||
<version>${sat.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<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>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>artifactory</id>
|
||||
<name>JFrog Artifactory Repository</name>
|
||||
<url>https://openhab.jfrog.io/openhab/libs-release</url>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<repositories>
|
||||
|
||||
<!-- 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>bintray</id>
|
||||
<name>openHAB SmartHome Repository</name>
|
||||
<url>https://api.bintray.com/maven/openhab/mvn/smarthome</url>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
|
||||
<repository>
|
||||
<id>openhab-artifactory-release</id>
|
||||
<name>JFrog Artifactory Repository</name>
|
||||
<url>https://openhab.jfrog.io/openhab/libs-release</url>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
|
||||
<!-- snapshots -->
|
||||
<repository>
|
||||
<id>openhab-artifactory-snapshot</id>
|
||||
<name>JFrog Artifactory Repository</name>
|
||||
<url>https://openhab.jfrog.io/openhab/libs-snapshot</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
</snapshots>
|
||||
</repository>
|
||||
|
||||
</repositories>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
1005
poms/tycho/pom.xml
1005
poms/tycho/pom.xml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user