Bump versions to 5.0.4-SNAPSHOT
[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>5.0.4-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.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.mdsal</groupId>
51             <artifactId>mdsal-binding-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>mdsal-binding-dom-codec-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.mdsal.model</groupId>
59             <artifactId>general-entity</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>concepts</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>yang-common</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>yang-data-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.osgi</groupId>
75             <artifactId>org.osgi.service.component.annotations</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>com.guicedee.services</groupId>
79             <artifactId>javax.inject</artifactId>
80             <optional>true</optional>
81         </dependency>
82         <dependency>
83             <groupId>javax.annotation</groupId>
84             <artifactId>javax.annotation-api</artifactId>
85             <scope>provided</scope>
86             <optional>true</optional>
87         </dependency>
88         <dependency>
89             <groupId>org.scala-lang</groupId>
90             <artifactId>scala-library</artifactId>
91         </dependency>
92
93         <dependency>
94             <groupId>com.typesafe.akka</groupId>
95             <artifactId>akka-actor-testkit-typed_2.13</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.awaitility</groupId>
99             <artifactId>awaitility</artifactId>
100         </dependency>
101
102         <dependency>
103             <groupId>org.opendaylight.mdsal</groupId>
104             <artifactId>mdsal-binding-dom-codec</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.mdsal</groupId>
109             <artifactId>mdsal-binding-generator</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.mdsal</groupId>
114             <artifactId>mdsal-binding-runtime-spi</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.mdsal</groupId>
119             <artifactId>mdsal-singleton-common-api</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.mdsal</groupId>
124             <artifactId>mdsal-singleton-dom-impl</artifactId>
125             <scope>test</scope>
126         </dependency>
127
128         <dependency>
129             <groupId>org.opendaylight.mdsal.model</groupId>
130             <artifactId>ietf-topology</artifactId>
131             <scope>test</scope>
132         </dependency>
133
134     </dependencies>
135 </project>