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