c5df9da2ff8d1b741c1799d0366eeecc4c154dfd
[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>5.0.1-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>org.osgi.service.component.annotations</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.service.metatype.annotations</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.scala-lang</groupId>
63             <artifactId>scala-library</artifactId>
64         </dependency>
65         <!-- Test Dependencies -->
66         <dependency>
67             <groupId>com.typesafe.akka</groupId>
68             <artifactId>akka-testkit_2.13</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.slf4j</groupId>
72             <artifactId>slf4j-simple</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>com.google.collections</groupId>
77             <artifactId>google-collections</artifactId>
78             <version>1.0</version>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>yang-test-util</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-akka-raft</artifactId>
88             <type>test-jar</type>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>commons-lang</groupId>
93             <artifactId>commons-lang</artifactId>
94             <scope>test</scope>
95         </dependency>
96     </dependencies>
97
98     <build>
99         <plugins>
100             <plugin>
101                 <groupId>org.apache.felix</groupId>
102                 <artifactId>maven-bundle-plugin</artifactId>
103                 <extensions>true</extensions>
104                 <configuration>
105                     <instructions>
106                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
107                         <Export-package/>
108                         <Import-Package>
109                             org.opendaylight.controller.cluster;
110                             *
111                         </Import-Package>
112                     </instructions>
113                 </configuration>
114             </plugin>
115         </plugins>
116     </build>
117
118     <scm>
119         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
120         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
121         <tag>HEAD</tag>
122         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
123     </scm>
124
125 </project>