ad16fafc46c8db1bf02e7ec10cc05e968798d48d
[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>8.0.0-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.opendaylight.yangtools</groupId>
30       <artifactId>concepts</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools</groupId>
34       <artifactId>yang-common</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.mdsal</groupId>
38       <artifactId>mdsal-binding-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal</groupId>
42       <artifactId>mdsal-binding-dom-codec-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.controller</groupId>
50       <artifactId>eos-dom-akka</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>cds-access-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>repackaged-akka</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-akka-raft</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>sal-cluster-admin-api</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-distributed-datastore</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.osgi</groupId>
74       <artifactId>org.osgi.service.component.annotations</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.scala-lang</groupId>
78       <artifactId>scala-library</artifactId>
79     </dependency>
80
81     <!-- Tests -->
82     <dependency>
83       <groupId>com.typesafe.akka</groupId>
84       <artifactId>akka-testkit_2.13</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>sal-akka-raft</artifactId>
89       <type>test-jar</type>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>sal-distributed-datastore</artifactId>
95       <type>test-jar</type>
96       <version>${project.version}</version>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.yangtools</groupId>
101       <artifactId>yang-data-api</artifactId>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.yangtools</groupId>
106       <artifactId>yang-test-util</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller.samples</groupId>
110       <artifactId>clustering-it-model</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.slf4j</groupId>
115       <artifactId>slf4j-simple</artifactId>
116       <scope>test</scope>
117     </dependency>
118   </dependencies>
119
120   <build>
121     <plugins>
122       <plugin>
123         <groupId>org.apache.felix</groupId>
124         <artifactId>maven-bundle-plugin</artifactId>
125         <extensions>true</extensions>
126         <configuration>
127           <instructions>
128             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
129             <Export-Package></Export-Package>
130           </instructions>
131         </configuration>
132       </plugin>
133     </plugins>
134   </build>
135
136   <scm>
137     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
138     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
139     <tag>HEAD</tag>
140     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
141   </scm>
142
143 </project>
144