atomic-storage: remove type dependency at segment level I/O
[controller.git] / opendaylight / md-sal / sal-cluster-admin-impl / 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>9.0.3-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-cluster-admin-impl</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>com.github.spotbugs</groupId>
17       <artifactId>spotbugs-annotations</artifactId>
18       <optional>true</optional>
19     </dependency>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.apache.commons</groupId>
26       <artifactId>commons-lang3</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.eclipse.jdt</groupId>
30       <artifactId>org.eclipse.jdt.annotation</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools</groupId>
34       <artifactId>concepts</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>yang-common</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal</groupId>
42       <artifactId>mdsal-binding-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>mdsal-dom-spi</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.mdsal</groupId>
50       <artifactId>yang-binding</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>eos-dom-akka</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>cds-access-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>repackaged-akka</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>sal-akka-raft</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-cluster-admin-api</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-distributed-datastore</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.osgi</groupId>
78       <artifactId>org.osgi.service.component.annotations</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.scala-lang</groupId>
82       <artifactId>scala-library</artifactId>
83     </dependency>
84
85     <!-- Tests -->
86     <dependency>
87       <groupId>com.typesafe.akka</groupId>
88       <artifactId>akka-testkit_2.13</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller</groupId>
92       <artifactId>sal-akka-raft</artifactId>
93       <type>test-jar</type>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.controller</groupId>
98       <artifactId>sal-distributed-datastore</artifactId>
99       <type>test-jar</type>
100       <version>${project.version}</version>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.yangtools</groupId>
105       <artifactId>yang-data-api</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.yangtools</groupId>
110       <artifactId>yang-test-util</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.controller.samples</groupId>
114       <artifactId>clustering-it-model</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.slf4j</groupId>
119       <artifactId>slf4j-simple</artifactId>
120       <scope>test</scope>
121     </dependency>
122   </dependencies>
123
124   <build>
125     <plugins>
126       <plugin>
127         <groupId>org.apache.felix</groupId>
128         <artifactId>maven-bundle-plugin</artifactId>
129         <extensions>true</extensions>
130         <configuration>
131           <instructions>
132             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
133             <Export-Package></Export-Package>
134           </instructions>
135         </configuration>
136       </plugin>
137     </plugins>
138   </build>
139
140   <scm>
141     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
142     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
143     <tag>HEAD</tag>
144     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
145   </scm>
146
147 </project>
148