Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • release_2_3_2_Bug20709
  • historicalarchivingservers-2.6.3
  • historicalarchivingservers-2.6.2
  • historicalarchivingservers-2.6.1
  • historicalarchivingservers-2.6.0
  • historicalarchivingservers-2.5.10
  • historicalarchivingservers-2.5.9
  • hdbtdbArchivingServers-2.5.8
  • hdbtdbArchivingServers-2.5.7
  • hdbtdbArchivingServers-2.5.6
  • hdbtdbArchivingServers-2.5.5
  • hdbtdbArchivingServers-2.5.4
  • hdbtdbArchivingServers-2.5.3
  • hdbtdbArchivingServers-2.5.2
  • hdbtdbArchivingServers-2.5.1
  • hdbtdbArchivingServers-2.5.0
  • hdbtdbArchivingServers-2.4.9
  • hdbtdbArchivingServers-2.4.8
  • hdbtdbArchivingServers-2.4.7
  • hdbtdbArchivingServers-2.4.6
  • hdbtdbArchivingServers-2.4.5
22 results

pom.xml

Blame
  • 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>