d5a1caf4ba1a7899c90f1972cf4aa66a706232bc
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / 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>1.9.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>sal-remoterpc-connector</artifactId>
13     <version>1.9.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>com.typesafe.akka</groupId>
19             <artifactId>akka-actor_2.12</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>com.typesafe.akka</groupId>
23             <artifactId>akka-cluster_2.12</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>com.typesafe.akka</groupId>
27             <artifactId>akka-remote_2.12</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.typesafe.akka</groupId>
31             <artifactId>akka-testkit_2.12</artifactId>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>com.typesafe.akka</groupId>
36             <artifactId>akka-osgi_2.12</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>com.typesafe.akka</groupId>
40             <artifactId>akka-slf4j_2.12</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.typesafe.akka</groupId>
44             <artifactId>akka-persistence_2.12</artifactId>
45         </dependency>
46         <!-- SAL Dependencies -->
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal-common-util</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53            <artifactId>mdsal-dom-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57            <artifactId>mdsal-dom-spi</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-common-impl</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller</groupId>
65             <artifactId>sal-clustering-commons</artifactId>
66         </dependency>
67         <!-- Yang tools-->
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-data-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.yangtools</groupId>
74             <artifactId>yang-model-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.yangtools</groupId>
78             <artifactId>yang-data-impl</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.yangtools</groupId>
82             <artifactId>yang-common</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.osgi</groupId>
86             <artifactId>org.osgi.core</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.slf4j</groupId>
90             <artifactId>slf4j-api</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.scala-lang</groupId>
94             <artifactId>scala-library</artifactId>
95         </dependency>
96         <!-- Test Dependencies -->
97         <dependency>
98             <groupId>org.mockito</groupId>
99             <artifactId>mockito-core</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.slf4j</groupId>
104             <artifactId>slf4j-simple</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>com.google.collections</groupId>
109             <artifactId>google-collections</artifactId>
110             <version>1.0</version>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.yangtools</groupId>
115             <artifactId>yang-test-util</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.controller</groupId>
119             <artifactId>sal-akka-raft</artifactId>
120             <type>test-jar</type>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>commons-lang</groupId>
125             <artifactId>commons-lang</artifactId>
126             <scope>test</scope>
127         </dependency>
128     </dependencies>
129
130     <build>
131         <plugins>
132             <plugin>
133                 <groupId>org.apache.felix</groupId>
134                 <artifactId>maven-bundle-plugin</artifactId>
135                 <extensions>true</extensions>
136                 <configuration>
137                     <instructions>
138                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
139                         <Export-package/>
140                         <Import-Package>
141                             org.opendaylight.controller.cluster;
142                             *
143                         </Import-Package>
144                     </instructions>
145                 </configuration>
146             </plugin>
147         </plugins>
148     </build>
149
150     <scm>
151         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
152         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
153         <tag>HEAD</tag>
154         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
155     </scm>
156
157 </project>