a6e68e8a255f2f5284237f245bfbc44dcd676c91
[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>bundle-parent</artifactId>
17         <version>4.0.2-SNAPSHOT</version>
18         <relativePath>../../../bundle-parent</relativePath>
19     </parent>
20
21     <artifactId>eos-dom-akka</artifactId>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.google.guava</groupId>
27             <artifactId>guava</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.typesafe</groupId>
31             <artifactId>config</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>repackaged-akka</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.controller</groupId>
39             <artifactId>sal-clustering-commons</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-eos-common-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.mdsal</groupId>
47             <artifactId>mdsal-eos-dom-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>concepts</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-common</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-data-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.osgi</groupId>
63             <artifactId>org.osgi.service.component.annotations</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.guicedee.services</groupId>
67             <artifactId>javax.inject</artifactId>
68             <optional>true</optional>
69         </dependency>
70         <dependency>
71             <groupId>javax.annotation</groupId>
72             <artifactId>javax.annotation-api</artifactId>
73             <scope>provided</scope>
74             <optional>true</optional>
75         </dependency>
76         <dependency>
77             <groupId>org.scala-lang</groupId>
78             <artifactId>scala-library</artifactId>
79         </dependency>
80
81         <dependency>
82             <groupId>com.typesafe.akka</groupId>
83             <artifactId>akka-actor-testkit-typed_2.13</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.awaitility</groupId>
87             <artifactId>awaitility</artifactId>
88         </dependency>
89     </dependencies>
90 </project>