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