Fixup sal-cluster-admin-impl dependencies
[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>7.0.4-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.google.guava</groupId>
17       <artifactId>guava</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.apache.commons</groupId>
21       <artifactId>commons-lang3</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.yangtools</groupId>
25       <artifactId>concepts</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.yangtools</groupId>
29       <artifactId>yang-common</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.mdsal</groupId>
33       <artifactId>mdsal-binding-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal</groupId>
37       <artifactId>mdsal-binding-dom-codec-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal</groupId>
41       <artifactId>mdsal-dom-spi</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>eos-dom-akka</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>cds-access-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>repackaged-akka</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-akka-raft</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal-cluster-admin-api</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>sal-distributed-datastore</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.osgi</groupId>
69       <artifactId>org.osgi.service.component.annotations</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.scala-lang</groupId>
73       <artifactId>scala-library</artifactId>
74     </dependency>
75
76     <!-- Tests -->
77     <dependency>
78       <groupId>com.typesafe.akka</groupId>
79       <artifactId>akka-testkit_2.13</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-akka-raft</artifactId>
84       <type>test-jar</type>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>sal-distributed-datastore</artifactId>
90       <type>test-jar</type>
91       <version>${project.version}</version>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.yangtools</groupId>
96       <artifactId>yang-data-api</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.yangtools</groupId>
101       <artifactId>yang-test-util</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.controller.samples</groupId>
105       <artifactId>clustering-it-model</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.slf4j</groupId>
110       <artifactId>slf4j-simple</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>commons-lang</groupId>
115       <artifactId>commons-lang</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