Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / eos-dom-akka / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2021 PANTHEON.tech, s.r.o. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.controller</groupId>
16         <artifactId>mdsal-parent</artifactId>
17         <version>9.0.3-SNAPSHOT</version>
18         <relativePath>../parent</relativePath>
19     </parent>
20
21     <artifactId>eos-dom-akka</artifactId>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.github.spotbugs</groupId>
27             <artifactId>spotbugs-annotations</artifactId>
28             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>com.google.guava</groupId>
32             <artifactId>guava</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>repackaged-akka</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-clustering-commons</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.mdsal</groupId>
44             <artifactId>mdsal-eos-common-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.mdsal</groupId>
48             <artifactId>mdsal-eos-dom-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-binding-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-binding-dom-codec-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal.model</groupId>
60             <artifactId>general-entity</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>concepts</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-common</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools</groupId>
72             <artifactId>yang-data-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.osgi</groupId>
76             <artifactId>org.osgi.service.component.annotations</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.guicedee.services</groupId>
80             <artifactId>javax.inject</artifactId>
81             <optional>true</optional>
82         </dependency>
83         <dependency>
84             <groupId>jakarta.annotation</groupId>
85             <artifactId>jakarta.annotation-api</artifactId>
86             <scope>provided</scope>
87             <optional>true</optional>
88         </dependency>
89         <dependency>
90             <groupId>org.scala-lang</groupId>
91             <artifactId>scala-library</artifactId>
92         </dependency>
93
94         <dependency>
95             <groupId>com.typesafe.akka</groupId>
96             <artifactId>akka-testkit_2.13</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>com.typesafe.akka</groupId>
100             <artifactId>akka-actor-testkit-typed_2.13</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.awaitility</groupId>
104             <artifactId>awaitility</artifactId>
105         </dependency>
106
107         <dependency>
108             <groupId>com.typesafe</groupId>
109             <artifactId>config</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.mdsal</groupId>
114             <artifactId>mdsal-binding-dom-codec</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.mdsal</groupId>
119             <artifactId>mdsal-binding-generator</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.mdsal</groupId>
124             <artifactId>mdsal-binding-runtime-api</artifactId>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.mdsal</groupId>
129             <artifactId>mdsal-binding-runtime-spi</artifactId>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.mdsal</groupId>
134             <artifactId>mdsal-singleton-api</artifactId>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.mdsal</groupId>
139             <artifactId>mdsal-singleton-impl</artifactId>
140             <scope>test</scope>
141         </dependency>
142
143         <dependency>
144             <groupId>org.opendaylight.mdsal.model</groupId>
145             <artifactId>ietf-topology</artifactId>
146             <scope>test</scope>
147         </dependency>
148
149     </dependencies>
150 </project>