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