Integrate SegmentedJournalActor with metrics/JMX
[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>1.10.0-SNAPSHOT</version>
16         <relativePath>../parent</relativePath>
17     </parent>
18
19     <artifactId>sal-akka-segmented-journal</artifactId>
20     <version>1.10.0-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22
23     <dependencies>
24
25         <!-- Akka -->
26         <dependency>
27             <groupId>com.typesafe.akka</groupId>
28             <artifactId>akka-actor_2.12</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>com.typesafe.akka</groupId>
32             <artifactId>akka-persistence_2.12</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>com.typesafe.akka</groupId>
36             <artifactId>akka-slf4j_2.12</artifactId>
37             <scope>test</scope>
38         </dependency>
39         <dependency>
40             <groupId>com.typesafe.akka</groupId>
41             <artifactId>akka-testkit_2.12</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>com.typesafe.akka</groupId>
45             <artifactId>akka-persistence-tck_2.12</artifactId>
46         </dependency>
47
48         <!-- Codahale -->
49         <dependency>
50             <groupId>io.dropwizard.metrics</groupId>
51             <artifactId>metrics-core</artifactId>
52         </dependency>
53
54         <!-- Scala -->
55         <dependency>
56             <groupId>org.scala-lang</groupId>
57             <artifactId>scala-library</artifactId>
58         </dependency>
59
60         <!-- Clustering commons for metrics -->
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>sal-clustering-commons</artifactId>
64         </dependency>
65
66         <!-- Atomix -->
67         <dependency>
68             <groupId>io.atomix</groupId>
69             <artifactId>atomix-storage</artifactId>
70             <version>3.1.5</version>
71             <scope>provided</scope>
72         </dependency>
73         <dependency>
74             <groupId>io.atomix</groupId>
75             <artifactId>atomix-utils</artifactId>
76             <version>3.1.5</version>
77             <scope>provided</scope>
78         </dependency>
79
80         <dependency>
81             <groupId>commons-io</groupId>
82             <artifactId>commons-io</artifactId>
83             <scope>test</scope>
84         </dependency>
85     </dependencies>
86
87     <build>
88         <plugins>
89             <plugin>
90                 <groupId>org.apache.felix</groupId>
91                 <artifactId>maven-bundle-plugin</artifactId>
92                 <extensions>true</extensions>
93                 <configuration>
94                     <instructions>
95                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
96                         <!-- atomix.io is using an older Guava, so let's embed it to prevent duplicates -->
97                         <Embed-Dependency>*;inline=true;groupId=io.atomix</Embed-Dependency>
98                     </instructions>
99                 </configuration>
100             </plugin>
101         </plugins>
102     </build>
103
104     <scm>
105         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
106         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
107         <tag>HEAD</tag>
108         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
109     </scm>
110
111 </project>