Select Git revision
-
gwen-soleil authored
replacing of some dependencies to legacy hdb/tdb API with new TTS API for managing archiving configuration
gwen-soleil authoredreplacing of some dependencies to legacy hdb/tdb API with new TTS API for managing archiving configuration
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 2.09 KiB
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fr.soleil.deviceservers</groupId>
<artifactId>historicalarchivingservers</artifactId>
<version>4.0.0</version>
</parent>
<artifactId>hdbarchiver</artifactId>
<properties>
<metrics.version>4.1.18</metrics.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>fr.soleil.tango.archiving</groupId>
<artifactId>tango-archiver-pool-config</artifactId>
<exclusions>
<!--version 3.x works only with java 11-->
<exclusion>
<artifactId>caffeine</artifactId>
<groupId>com.github.ben-manes.caffeine</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${metrics.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-jvm</artifactId>
<version>${metrics.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-json</artifactId>
<version>${metrics.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>