35626ff32e39f8e5227c785b3014b911948cd876
[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>4.0.5-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>org.opendaylight.controller</groupId>
17             <artifactId>repackaged-akka</artifactId>
18         </dependency>
19         <!-- SAL Dependencies -->
20         <dependency>
21             <groupId>org.opendaylight.controller</groupId>
22             <artifactId>sal-common-util</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.mdsal</groupId>
26            <artifactId>mdsal-dom-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.mdsal</groupId>
30            <artifactId>mdsal-dom-spi</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-clustering-commons</artifactId>
35         </dependency>
36         <!-- Yang tools-->
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-data-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>yang-model-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-data-impl</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-common</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.osgi</groupId>
55             <artifactId>osgi.cmpn</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.scala-lang</groupId>
59             <artifactId>scala-library</artifactId>
60         </dependency>
61         <!-- Test Dependencies -->
62         <dependency>
63             <groupId>com.typesafe.akka</groupId>
64             <artifactId>akka-testkit_2.13</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.slf4j</groupId>
68             <artifactId>slf4j-simple</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>com.google.collections</groupId>
73             <artifactId>google-collections</artifactId>
74             <version>1.0</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-test-util</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>commons-lang</groupId>
89             <artifactId>commons-lang</artifactId>
90             <scope>test</scope>
91         </dependency>
92     </dependencies>
93
94     <build>
95         <plugins>
96             <plugin>
97                 <groupId>org.apache.felix</groupId>
98                 <artifactId>maven-bundle-plugin</artifactId>
99                 <extensions>true</extensions>
100                 <configuration>
101                     <instructions>
102                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
103                         <Export-package/>
104                         <Import-Package>
105                             org.opendaylight.controller.cluster;
106                             *
107                         </Import-Package>
108                     </instructions>
109                 </configuration>
110             </plugin>
111         </plugins>
112     </build>
113
114     <scm>
115         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
116         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
117         <tag>HEAD</tag>
118         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
119     </scm>
120
121 </project>