atomic-storage: remove type dependency at segment level I/O
[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.8-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         <dependency>
74             <groupId>com.esotericsoftware</groupId>
75             <artifactId>kryo</artifactId>
76             <version>4.0.2</version>
77             <scope>provided</scope>
78         </dependency>
79         <dependency>
80             <groupId>com.esotericsoftware</groupId>
81             <artifactId>minlog</artifactId>
82             <version>1.3.1</version>
83             <scope>provided</scope>
84         </dependency>
85         <dependency>
86             <groupId>com.esotericsoftware</groupId>
87             <artifactId>reflectasm</artifactId>
88             <version>1.11.8</version>
89             <scope>provided</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.ow2.asm</groupId>
93             <artifactId>asm</artifactId>
94             <version>5.2</version>
95             <scope>provided</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.objenesis</groupId>
99             <artifactId>objenesis</artifactId>
100             <version>2.6</version>
101             <scope>provided</scope>
102         </dependency>
103
104         <dependency>
105             <groupId>commons-io</groupId>
106             <artifactId>commons-io</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.scalatestplus</groupId>
111             <artifactId>junit-4-13_2.13</artifactId>
112             <scope>test</scope>
113         </dependency>
114     </dependencies>
115
116     <build>
117         <plugins>
118             <plugin>
119                 <groupId>org.apache.felix</groupId>
120                 <artifactId>maven-bundle-plugin</artifactId>
121                 <extensions>true</extensions>
122                 <configuration>
123                     <instructions>
124                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
125                         <Import-Package>
126                             !COM.newmonics.*,
127                             !android.os,
128                             *
129                         </Import-Package>
130                         <Embed-Dependency>
131                             <!-- atomix.io is using an older Guava, and Kryo is using ancient objenesis,
132                                  so let's embed it to prevent duplicates -->
133                             *;inline=true;groupId=io.atomix,
134                             *;inline=true;groupId=com.esotericsoftware,
135                             *;inline=true;groupId=org.objenesis,
136                             *;inline=true;groupId=org.ow2.asm,
137                         </Embed-Dependency>
138                     </instructions>
139                 </configuration>
140             </plugin>
141         </plugins>
142     </build>
143
144     <scm>
145         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
146         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
147         <tag>HEAD</tag>
148         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
149     </scm>
150 </project>