Merge "Created Sample Feature Test Class for Base Feature Repository"
[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>sal-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-remoterpc-connector</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>com.google.guava</groupId>
15       <artifactId>guava</artifactId>
16     </dependency>
17
18     <dependency>
19       <groupId>com.typesafe.akka</groupId>
20       <artifactId>akka-actor_${scala.version}</artifactId>
21     </dependency>
22
23     <dependency>
24       <groupId>com.typesafe.akka</groupId>
25       <artifactId>akka-cluster_${scala.version}</artifactId>
26     </dependency>
27
28     <dependency>
29       <groupId>com.typesafe.akka</groupId>
30       <artifactId>akka-remote_${scala.version}</artifactId>
31     </dependency>
32
33     <dependency>
34       <groupId>com.typesafe.akka</groupId>
35       <artifactId>akka-testkit_${scala.version}</artifactId>
36     </dependency>
37
38     <!-- SAL Dependencies -->
39
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-connector-api</artifactId>
43     </dependency>
44
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-common-util</artifactId>
48     </dependency>
49
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-core-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>netconf-util</artifactId>
57     </dependency>
58       <dependency>
59           <groupId>org.opendaylight.controller</groupId>
60           <artifactId>sal-core-spi</artifactId>
61       </dependency>
62       <dependency>
63           <groupId>org.opendaylight.controller</groupId>
64           <artifactId>sal-common-impl</artifactId>
65       </dependency>
66     <!-- Yang tools-->
67
68     <dependency>
69       <groupId>org.opendaylight.yangtools</groupId>
70       <artifactId>yang-data-api</artifactId>
71
72     </dependency>
73       <dependency>
74           <groupId>org.opendaylight.yangtools</groupId>
75           <artifactId>yang-model-api</artifactId>
76
77       </dependency>
78
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>yang-data-impl</artifactId>
82
83     </dependency>
84
85     <dependency>
86       <groupId>org.opendaylight.yangtools</groupId>
87       <artifactId>yang-common</artifactId>
88
89     </dependency>
90
91
92     <dependency>
93       <groupId>org.osgi</groupId>
94       <artifactId>org.osgi.core</artifactId>
95     </dependency>
96
97     <dependency>
98       <groupId>org.slf4j</groupId>
99       <artifactId>slf4j-api</artifactId>
100     </dependency>
101
102     <dependency>
103       <groupId>org.scala-lang</groupId>
104       <artifactId>scala-library</artifactId>
105     </dependency>
106
107     <!-- Test Dependencies -->
108     <dependency>
109       <groupId>junit</groupId>
110       <artifactId>junit</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.mockito</groupId>
115       <artifactId>mockito-all</artifactId>
116       <scope>test</scope>
117     </dependency>
118
119     <dependency>
120       <groupId>org.slf4j</groupId>
121       <artifactId>slf4j-simple</artifactId>
122       <version>${slf4j.version}</version>
123       <scope>test</scope>
124     </dependency>
125       <dependency>
126           <groupId>org.opendaylight.yangtools</groupId>
127           <artifactId>yang-parser-impl</artifactId>
128           <scope>test</scope>
129       </dependency>
130       <dependency>
131           <groupId>com.google.collections</groupId>
132           <artifactId>google-collections</artifactId>
133           <version>1.0</version>
134           <scope>test</scope>
135       </dependency>
136
137   </dependencies>
138
139   <build>
140     <plugins>
141
142       <plugin>
143         <groupId>org.apache.felix</groupId>
144         <artifactId>maven-bundle-plugin</artifactId>
145         <extensions>true</extensions>
146         <configuration>
147           <instructions>
148             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
149             <Export-package></Export-package>
150             <Private-Package></Private-Package>
151             <Import-Package>!org.jboss.*;!com.jcraft.*;*</Import-Package>
152             <Embed-Dependency>
153                 !sal*;
154                 !*config-api*;
155                 !*testkit*;
156                 *protobuf*;
157                 akka*;
158                 *scala*;
159                 *config*;
160                 *netty*;
161                 *uncommons*;
162             </Embed-Dependency>
163             <Embed-Transitive>true</Embed-Transitive>
164           </instructions>
165         </configuration>
166       </plugin>
167       <plugin>
168         <groupId>org.opendaylight.yangtools</groupId>
169         <artifactId>yang-maven-plugin</artifactId>
170         <executions>
171           <execution>
172             <id>config</id>
173             <goals>
174               <goal>generate-sources</goal>
175             </goals>
176             <configuration>
177               <codeGenerators>
178                 <generator>
179                   <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
180                   <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
181                   <additionalConfiguration>
182                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
183                   </additionalConfiguration>
184                 </generator>
185                 <generator>
186                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
187                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
188                 </generator>
189               </codeGenerators>
190               <inspectDependencies>true</inspectDependencies>
191             </configuration>
192           </execution>
193         </executions>
194       </plugin>
195     </plugins>
196   </build>
197   <scm>
198     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
199     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
200     <tag>HEAD</tag>
201     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
202   </scm>
203 </project>