2024-12-15 18:49:23 +01:00
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-01-28 13:07:31 +01:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2019-01-30 08:57:06 +01:00
|
|
|
<groupId>org.openhab.core</groupId>
|
|
|
|
<artifactId>org.openhab.core.reactor</artifactId>
|
2024-12-15 18:49:23 +01:00
|
|
|
<version>5.0.0-SNAPSHOT</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</parent>
|
|
|
|
|
2019-01-30 08:57:06 +01:00
|
|
|
<groupId>org.openhab.core.itests</groupId>
|
|
|
|
<artifactId>org.openhab.core.reactor.itests</artifactId>
|
2019-01-28 13:07:31 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2019-01-30 08:57:06 +01:00
|
|
|
<name>openHAB Core :: Integration Tests</name>
|
2019-01-28 13:07:31 +01:00
|
|
|
|
|
|
|
<modules>
|
2019-02-05 09:32:49 +01:00
|
|
|
<module>org.openhab.core.tests</module>
|
|
|
|
<module>org.openhab.core.auth.oauth2client.tests</module>
|
2019-02-05 12:54:04 +01:00
|
|
|
<module>org.openhab.core.automation.tests</module>
|
2019-10-01 13:16:19 +02:00
|
|
|
<module>org.openhab.core.automation.module.core.tests</module>
|
|
|
|
<module>org.openhab.core.automation.module.timer.tests</module>
|
|
|
|
<module>org.openhab.core.automation.module.script.tests</module>
|
2019-10-01 15:49:43 +02:00
|
|
|
<module>org.openhab.core.automation.integration.tests</module>
|
2023-02-23 20:06:29 +01:00
|
|
|
<module>org.openhab.core.addon.tests</module>
|
2019-02-04 17:37:10 +01:00
|
|
|
<module>org.openhab.core.config.core.tests</module>
|
2019-02-05 09:32:49 +01:00
|
|
|
<module>org.openhab.core.config.discovery.mdns.tests</module>
|
2019-02-05 14:40:16 +01:00
|
|
|
<module>org.openhab.core.config.discovery.tests</module>
|
2019-10-02 10:00:08 +02:00
|
|
|
<module>org.openhab.core.config.discovery.usbserial.tests</module>
|
2019-09-16 21:13:02 +02:00
|
|
|
<module>org.openhab.core.config.dispatch.tests</module>
|
2019-10-05 06:33:43 +02:00
|
|
|
<module>org.openhab.core.ephemeris.tests</module>
|
2023-03-25 17:44:15 +01:00
|
|
|
<module>org.openhab.core.io.net.tests</module>
|
2019-02-06 15:07:34 +01:00
|
|
|
<module>org.openhab.core.io.rest.core.tests</module>
|
2019-10-01 22:22:04 +02:00
|
|
|
<module>org.openhab.core.model.item.tests</module>
|
2019-10-01 22:24:01 +02:00
|
|
|
<module>org.openhab.core.model.rule.tests</module>
|
2019-10-01 22:41:57 +02:00
|
|
|
<module>org.openhab.core.model.script.tests</module>
|
2019-02-13 14:37:41 +01:00
|
|
|
<module>org.openhab.core.model.thing.testsupport</module>
|
|
|
|
<module>org.openhab.core.model.thing.tests</module>
|
2019-03-05 11:53:02 +01:00
|
|
|
<module>org.openhab.core.storage.json.tests</module>
|
2019-02-05 09:32:49 +01:00
|
|
|
<module>org.openhab.core.thing.tests</module>
|
2019-02-05 14:32:39 +01:00
|
|
|
<module>org.openhab.core.voice.tests</module>
|
2019-01-28 13:07:31 +01:00
|
|
|
</modules>
|
|
|
|
|
2019-05-05 17:47:41 +02:00
|
|
|
<properties>
|
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
2020-05-23 17:35:13 +02:00
|
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
2020-11-03 21:33:48 +01:00
|
|
|
<m2e.jdt.annotationpath>target/dependency</m2e.jdt.annotationpath>
|
2022-02-14 08:09:55 +01:00
|
|
|
<org.osgi.service.http.port>9090</org.osgi.service.http.port>
|
2019-05-05 17:47:41 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2022-05-25 21:13:40 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2023-12-19 23:26:22 +01:00
|
|
|
<version>1.3.14</version>
|
2022-05-25 21:13:40 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-05-05 17:47:41 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.openhab-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.compile</artifactId>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
<skipIfEmpty>true</skipIfEmpty>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2020-11-03 21:33:48 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
Update plugins (#4197)
* set minimum Maven version to 3.6.3
* build-helper-maven-plugin, 3.4.0 to 3.5.0, see
https://github.com/mojohaus/build-helper-maven-plugin/releases/tag/3.5.0
* jvnet maven-jaxb2-plugin, 0.15.2 to 0.15.3
* license-maven-plugin, 4.2 to 4.3
* maven-archetype-plugin, 3.0.1 to 3.2.1
* maven-assembly-plugin, 3.4.2 to 3.7.1, see https://github.com/apache/maven-assembly-plugin/releases
* maven-clean-plugin, 3.3.1 to 3.3.2, see https://github.com/apache/maven-clean-plugin/releases
* maven-dependency-plugin, 3.6.0/3.3.0/3.1.1 to 3.6.1, see
https://github.com/apache/maven-dependency-plugin/releases/tag/maven-dependency-plugin-3.6.1
* maven-jar-plugin, 3.3.0 to 3.4.1, see https://github.com/apache/maven-jar-plugin/releases
* maven-javadoc-plugin, 3.6.2 to 3.6.3, see https://github.com/apache/maven-javadoc-plugin/releases
* maven-plugin-plugin, 3.11.0 to 3.12.0, see
https://github.com/apache/maven-plugin-tools/releases/tag/maven-plugin-tools-3.12.0
* maven-shade-pluginm 3.5.2 to 3.5.3
* maven-source-plugin, 3.3.0 to 3.3.1
* maven-surefire-plugin, 3.1.2 to 3.2.5, see https://github.com/apache/maven-surefire/releases
* sortpom-maven-plugin, 3.3.0 to 3.4.1, see https://github.com/Ekryd/sortpom/releases
* spotless-maven-plugin, 2.38.0 to 2.43.0, see
https://github.com/diffplug/spotless/blob/main/plugin-maven/CHANGES.md
* openhab 18n-maven-plugin, 4.0.2 to 4.1.2
Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
2024-04-27 09:34:39 +02:00
|
|
|
<version>3.6.1</version>
|
2020-11-03 21:33:48 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-eea</id>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.lastnpe.eea</groupId>
|
|
|
|
<artifactId>eea-all</artifactId>
|
2020-11-17 16:29:09 +01:00
|
|
|
<version>${eea.version}</version>
|
2020-11-03 21:33:48 +01:00
|
|
|
<overWrite>true</overWrite>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-05-05 17:47:41 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
2019-02-01 11:02:39 +01:00
|
|
|
<id>itests-os-unix-only</id>
|
2019-01-28 13:07:31 +01:00
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>unix</family>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
2019-10-02 10:00:08 +02:00
|
|
|
<module>org.openhab.core.config.discovery.usbserial.linuxsysfs.tests</module>
|
2019-01-28 13:07:31 +01:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2019-02-01 11:02:39 +01:00
|
|
|
|
2019-05-05 17:47:41 +02:00
|
|
|
<profile>
|
2019-02-01 11:02:39 +01:00
|
|
|
<id>itests-common</id>
|
|
|
|
<activation>
|
|
|
|
<file>
|
|
|
|
<exists>itest.bndrun</exists>
|
|
|
|
</file>
|
|
|
|
</activation>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.test</artifactId>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.test-index</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.openhab-core-index</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.runtime-index</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<bndfile>itest.bndrun</bndfile>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-indexer-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includeJar>true</includeJar>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-testing-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<bndruns>
|
|
|
|
<bndrun>itest.bndrun</bndrun>
|
|
|
|
</bndruns>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-resolver-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<bndruns>
|
|
|
|
<bndrun>itest.bndrun</bndrun>
|
|
|
|
</bndruns>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-02-14 08:09:55 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>reserve-network-port</id>
|
|
|
|
<goals>
|
|
|
|
<goal>reserve-network-port</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<portNames>
|
|
|
|
<portName>org.osgi.service.http.port</portName>
|
|
|
|
</portNames>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-02-01 11:02:39 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-05-05 17:47:41 +02:00
|
|
|
</profile>
|
2019-01-28 13:07:31 +01:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|