77c18eb18362631de5845826007bc508b7ba5f6d
[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"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>config-parent</artifactId>
8         <version>0.6.0-SNAPSHOT</version>
9         <relativePath>../../config/config-parent</relativePath>
10     </parent>
11
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>sal-remoterpc-connector</artifactId>
14     <version>1.5.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <dependencyManagement>
18         <dependencies>
19             <dependency>
20                 <groupId>org.opendaylight.controller</groupId>
21                 <artifactId>mdsal-artifacts</artifactId>
22                 <version>1.5.0-SNAPSHOT</version>
23                 <type>pom</type>
24                 <scope>import</scope>
25             </dependency>
26         </dependencies>
27     </dependencyManagement>
28
29     <dependencies>
30         <dependency>
31             <groupId>com.google.guava</groupId>
32             <artifactId>guava</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>com.typesafe.akka</groupId>
36             <artifactId>akka-actor_${scala.version}</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>com.typesafe.akka</groupId>
40             <artifactId>akka-cluster_${scala.version}</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.typesafe.akka</groupId>
44             <artifactId>akka-remote_${scala.version}</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.typesafe.akka</groupId>
48             <artifactId>akka-testkit_${scala.version}</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>com.typesafe.akka</groupId>
53             <artifactId>akka-osgi_${scala.version}</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>com.typesafe.akka</groupId>
57             <artifactId>akka-slf4j_${scala.version}</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>com.typesafe.akka</groupId>
61             <artifactId>akka-persistence_${scala.version}</artifactId>
62         </dependency>
63         <!-- SAL Dependencies -->
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>sal-connector-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>sal-common-util</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>sal-core-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal-core-spi</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>sal-dom-config</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal-common-impl</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>sal-clustering-commons</artifactId>
91         </dependency>
92         <!-- Yang tools-->
93         <dependency>
94             <groupId>org.opendaylight.yangtools</groupId>
95             <artifactId>yang-data-api</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.yangtools</groupId>
99             <artifactId>yang-model-api</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.yangtools</groupId>
103             <artifactId>yang-data-impl</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.yangtools</groupId>
107             <artifactId>yang-common</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.osgi</groupId>
111             <artifactId>org.osgi.core</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.slf4j</groupId>
115             <artifactId>slf4j-api</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.scala-lang</groupId>
119             <artifactId>scala-library</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>io.dropwizard.metrics</groupId>
123             <artifactId>metrics-core</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>io.dropwizard.metrics</groupId>
127             <artifactId>metrics-graphite</artifactId>
128         </dependency>
129         <!-- Test Dependencies -->
130         <dependency>
131             <groupId>junit</groupId>
132             <artifactId>junit</artifactId>
133             <scope>test</scope>
134         </dependency>
135         <dependency>
136             <groupId>org.mockito</groupId>
137             <artifactId>mockito-all</artifactId>
138             <scope>test</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.slf4j</groupId>
142             <artifactId>slf4j-simple</artifactId>
143             <scope>test</scope>
144         </dependency>
145         <dependency>
146             <groupId>org.opendaylight.yangtools</groupId>
147             <artifactId>yang-parser-impl</artifactId>
148             <scope>test</scope>
149         </dependency>
150         <dependency>
151             <groupId>com.google.collections</groupId>
152             <artifactId>google-collections</artifactId>
153             <version>1.0</version>
154             <scope>test</scope>
155         </dependency>
156     </dependencies>
157
158     <build>
159         <plugins>
160             <plugin>
161                 <groupId>org.apache.felix</groupId>
162                 <artifactId>maven-bundle-plugin</artifactId>
163                 <extensions>true</extensions>
164                 <configuration>
165                     <instructions>
166                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
167                         <Export-package></Export-package>
168                         <Private-Package></Private-Package>
169                         <Import-Package>
170                             !org.iq80.*;
171                             !*snappy;
172                             !org.jboss.*;
173                             !com.jcraft.*;
174                             !org.fusesource.*;
175                             !*jetty*;
176                             !sun.security.*;
177                             org.opendaylight.controller.cluster;
178                             *
179                         </Import-Package>
180                         <!--
181                         <Embed-Dependency>
182                             sal-clustering-commons;
183                             sal-akka-raft;
184                             *metrics*;
185                             !sal*;
186                             !*config-api*;
187                             !*testkit*;
188                             *protobuf*;
189                             akka*;
190                             *scala*;
191                             *config*;
192                             *netty*;
193                             *uncommons*;
194                         </Embed-Dependency>
195                         <Embed-Transitive>true</Embed-Transitive>
196                       -->
197                     </instructions>
198                 </configuration>
199             </plugin>
200         </plugins>
201     </build>
202
203     <profiles>
204         <!-- Turn off doclint. -->
205         <profile>
206             <id>jdk8</id>
207             <activation>
208                 <jdk>[1.8,)</jdk>
209             </activation>
210             <build>
211                 <plugins>
212                     <plugin>
213                         <groupId>org.apache.maven.plugins</groupId>
214                         <artifactId>maven-javadoc-plugin</artifactId>
215                         <configuration>
216                             <additionalparam>-Xdoclint:none</additionalparam>
217                         </configuration>
218                     </plugin>
219                 </plugins>
220             </build>
221         </profile>
222     </profiles>
223
224     <scm>
225         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
226         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
227         <tag>HEAD</tag>
228         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
229     </scm>
230
231 </project>