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