2022-06-27 13:41:28 +02: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>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.reactor.bundles</artifactId>
|
2022-06-26 18:37:00 +02:00
|
|
|
<version>3.4.0-SNAPSHOT</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.core.io.monitor</artifactId>
|
|
|
|
|
|
|
|
<name>openHAB Core :: Bundles :: Monitor</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2021-02-11 21:12:58 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.automation</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2021-09-15 22:32:53 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
<artifactId>metrics-core</artifactId>
|
|
|
|
<version>4.0.7</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2021-02-11 21:12:58 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.micrometer</groupId>
|
|
|
|
<artifactId>micrometer-core</artifactId>
|
|
|
|
<version>1.6.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2021-04-28 08:01:16 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hdrhistogram</groupId>
|
|
|
|
<artifactId>HdrHistogram</artifactId>
|
|
|
|
<version>2.1.12</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.latencyutils</groupId>
|
|
|
|
<artifactId>LatencyUtils</artifactId>
|
|
|
|
<version>2.0.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.hdrhistogram</groupId>
|
|
|
|
<artifactId>HdrHistogram</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2021-02-11 21:12:58 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>embed-dependencies</id>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
<includeTypes>jar</includeTypes>
|
|
|
|
<excludeGroupIds>org.apache.karaf.features,org.openhab.core.bundles</excludeGroupIds>
|
|
|
|
<outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
|
<overWriteReleases>true</overWriteReleases>
|
|
|
|
<overWriteSnapshots>true</overWriteSnapshots>
|
|
|
|
<excludeTransitive>true</excludeTransitive>
|
|
|
|
<type>jar</type>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-01-28 13:07:31 +01:00
|
|
|
</project>
|