Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / sal-akka-segmented-journal / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright (c) 2019 Pantheon Technologies, s.r.o. and others.  All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>mdsal-parent</artifactId>
15         <version>9.0.3-SNAPSHOT</version>
16         <relativePath>../parent</relativePath>
17     </parent>
18
19     <artifactId>sal-akka-segmented-journal</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>com.google.guava</groupId>
25             <artifactId>guava</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>com.typesafe</groupId>
29             <artifactId>config</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>io.dropwizard.metrics</groupId>
33             <artifactId>metrics-core</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.eclipse.jdt</groupId>
37             <artifactId>org.eclipse.jdt.annotation</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller</groupId>
41             <artifactId>atomix-storage</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>repackaged-akka</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal-clustering-commons</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.scala-lang</groupId>
53             <artifactId>scala-library</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>com.typesafe.akka</groupId>
58             <artifactId>akka-testkit_2.13</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>com.typesafe.akka</groupId>
62             <artifactId>akka-persistence-tck_2.13</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>commons-io</groupId>
66             <artifactId>commons-io</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.scalatestplus</groupId>
71             <artifactId>junit-4-13_2.13</artifactId>
72             <scope>test</scope>
73         </dependency>
74     </dependencies>
75
76     <scm>
77         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
78         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
79         <tag>HEAD</tag>
80         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
81     </scm>
82 </project>