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