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