Convert sal-remoterpc-provided to OSGi DS
[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>2.0.3-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>sal-remoterpc-connector</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>com.typesafe.akka</groupId>
17             <artifactId>akka-actor_2.13</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>com.typesafe.akka</groupId>
21             <artifactId>akka-cluster_2.13</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>com.typesafe.akka</groupId>
25             <artifactId>akka-remote_2.13</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>com.typesafe.akka</groupId>
29             <artifactId>akka-testkit_2.13</artifactId>
30             <scope>test</scope>
31         </dependency>
32         <dependency>
33             <groupId>com.typesafe.akka</groupId>
34             <artifactId>akka-osgi_2.13</artifactId>
35             <exclusions>
36                 <exclusion>
37                     <groupId>org.osgi</groupId>
38                     <artifactId>org.osgi.compendium</artifactId>
39                 </exclusion>
40             </exclusions>
41         </dependency>
42         <dependency>
43             <groupId>com.typesafe.akka</groupId>
44             <artifactId>akka-slf4j_2.13</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.typesafe.akka</groupId>
48             <artifactId>akka-persistence_2.13</artifactId>
49         </dependency>
50         <!-- SAL Dependencies -->
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>sal-common-util</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57            <artifactId>mdsal-dom-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.mdsal</groupId>
61            <artifactId>mdsal-dom-spi</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>osgi.cmpn</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.scala-lang</groupId>
90             <artifactId>scala-library</artifactId>
91         </dependency>
92         <!-- Test Dependencies -->
93         <dependency>
94             <groupId>org.slf4j</groupId>
95             <artifactId>slf4j-simple</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>com.google.collections</groupId>
100             <artifactId>google-collections</artifactId>
101             <version>1.0</version>
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</groupId>
110             <artifactId>sal-akka-raft</artifactId>
111             <type>test-jar</type>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>commons-lang</groupId>
116             <artifactId>commons-lang</artifactId>
117             <scope>test</scope>
118         </dependency>
119     </dependencies>
120
121     <build>
122         <plugins>
123             <plugin>
124                 <groupId>org.apache.felix</groupId>
125                 <artifactId>maven-bundle-plugin</artifactId>
126                 <extensions>true</extensions>
127                 <configuration>
128                     <instructions>
129                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
130                         <Export-package/>
131                         <Import-Package>
132                             org.opendaylight.controller.cluster;
133                             *
134                         </Import-Package>
135                     </instructions>
136                 </configuration>
137             </plugin>
138         </plugins>
139     </build>
140
141     <scm>
142         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
143         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
144         <tag>HEAD</tag>
145         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
146     </scm>
147
148 </project>