atomic-storage: remove type dependency at segment level I/O
[controller.git] / opendaylight / md-sal / sal-akka-raft / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>mdsal-parent</artifactId>
7     <version>2.0.1-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-akka-raft</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>sal-clustering-commons</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>com.typesafe.akka</groupId>
21       <artifactId>akka-actor_2.13</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>com.typesafe.akka</groupId>
25       <artifactId>akka-cluster_2.13</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>com.typesafe.akka</groupId>
29       <artifactId>akka-persistence_2.13</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>com.typesafe.akka</groupId>
33       <artifactId>akka-remote_2.13</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>com.typesafe.akka</groupId>
37       <artifactId>akka-slf4j_2.13</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.scala-lang</groupId>
41       <artifactId>scala-library</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.apache.commons</groupId>
45       <artifactId>commons-lang3</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.osgi</groupId>
49       <artifactId>org.osgi.core</artifactId>
50     </dependency>
51
52     <!-- Test Dependencies -->
53     <dependency>
54       <groupId>com.typesafe.akka</groupId>
55       <artifactId>akka-testkit_2.13</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.awaitility</groupId>
60       <artifactId>awaitility</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.slf4j</groupId>
65       <artifactId>slf4j-simple</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>commons-io</groupId>
70       <artifactId>commons-io</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>commons-lang</groupId>
75       <artifactId>commons-lang</artifactId>
76       <scope>test</scope>
77     </dependency>
78   </dependencies>
79
80   <build>
81     <plugins>
82       <plugin>
83         <groupId>org.apache.felix</groupId>
84         <artifactId>maven-bundle-plugin</artifactId>
85         <extensions>true</extensions>
86         <configuration>
87           <instructions>
88             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
89             <Export-package>org.opendaylight.cluster.raft</Export-package>
90             <DynamicImport-Package>*</DynamicImport-Package>
91           </instructions>
92         </configuration>
93       </plugin>
94       <plugin>
95         <artifactId>maven-jar-plugin</artifactId>
96         <executions>
97           <execution>
98             <goals>
99               <goal>test-jar</goal>
100             </goals>
101           </execution>
102         </executions>
103       </plugin>
104       <plugin>
105         <artifactId>maven-source-plugin</artifactId>
106         <executions>
107           <execution>
108             <goals>
109               <goal>test-jar-no-fork</goal>
110             </goals>
111           </execution>
112         </executions>
113       </plugin>
114     </plugins>
115   </build>
116
117   <scm>
118     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
119     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
120     <tag>HEAD</tag>
121     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
122   </scm>
123 </project>