Merge "Bug 225 - added support for depth RESTCONF parameter in URI"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / 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-distributed-datastore</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-persistence-experimental_${scala.version}</artifactId>
31     </dependency>
32
33     <dependency>
34       <groupId>com.typesafe.akka</groupId>
35       <artifactId>akka-remote_${scala.version}</artifactId>
36     </dependency>
37
38     <!-- SAL Dependencies -->
39
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>config-api</artifactId>
43     </dependency>
44
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48     </dependency>
49
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-binding-config</artifactId>
53     </dependency>
54
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-common-api</artifactId>
58     </dependency>
59
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-common-util</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>sal-core-spi</artifactId>
68     </dependency>
69
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>concepts</artifactId>
73     </dependency>
74
75     <dependency>
76       <groupId>org.opendaylight.yangtools</groupId>
77       <artifactId>yang-binding</artifactId>
78     </dependency>
79
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>yang-common</artifactId>
83     </dependency>
84
85     <dependency>
86       <groupId>org.opendaylight.yangtools</groupId>
87       <artifactId>yang-data-api</artifactId>
88     </dependency>
89
90     <dependency>
91       <groupId>org.osgi</groupId>
92       <artifactId>org.osgi.core</artifactId>
93     </dependency>
94
95     <!-- AKKA Dependencies -->
96     <dependency>
97       <groupId>org.scala-lang</groupId>
98       <artifactId>scala-library</artifactId>
99     </dependency>
100
101     <!-- Test Dependencies -->
102     <dependency>
103       <groupId>junit</groupId>
104       <artifactId>junit</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.mockito</groupId>
109       <artifactId>mockito-all</artifactId>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.slf4j</groupId>
114       <artifactId>slf4j-simple</artifactId>
115       <version>${slf4j.version}</version>
116       <scope>test</scope>
117     </dependency>
118   </dependencies>
119
120   <build>
121     <plugins>
122
123       <plugin>
124         <groupId>org.apache.felix</groupId>
125         <artifactId>maven-bundle-plugin</artifactId>
126         <extensions>true</extensions>
127         <configuration>
128           <instructions>
129             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
130             <Export-package></Export-package>
131             <Private-Package></Private-Package>
132           </instructions>
133         </configuration>
134       </plugin>
135
136       <plugin>
137         <groupId>org.apache.maven.plugins</groupId>
138         <artifactId>maven-jar-plugin</artifactId>
139         <executions>
140           <execution>
141             <goals>
142               <goal>test-jar</goal>
143             </goals>
144           </execution>
145         </executions>
146       </plugin>
147       <plugin>
148         <groupId>org.jacoco</groupId>
149         <artifactId>jacoco-maven-plugin</artifactId>
150         <configuration>
151           <includes>
152             <include>org.opendaylight.controller.*</include>
153           </includes>
154           <check>false</check>
155         </configuration>
156         <executions>
157           <execution>
158             <id>pre-test</id>
159             <goals>
160               <goal>prepare-agent</goal>
161             </goals>
162           </execution>
163           <execution>
164             <id>post-test</id>
165             <goals>
166               <goal>report</goal>
167             </goals>
168             <phase>test</phase>
169           </execution>
170         </executions>
171       </plugin>
172       <plugin>
173         <groupId>org.opendaylight.yangtools</groupId>
174         <artifactId>yang-maven-plugin</artifactId>
175         <executions>
176           <execution>
177             <id>config</id>
178             <goals>
179               <goal>generate-sources</goal>
180             </goals>
181             <configuration>
182               <codeGenerators>
183                 <generator>
184                   <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
185                   <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
186                   <additionalConfiguration>
187                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
188                   </additionalConfiguration>
189                 </generator>
190                 <generator>
191                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
192                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
193                 </generator>
194               </codeGenerators>
195               <inspectDependencies>true</inspectDependencies>
196             </configuration>
197           </execution>
198         </executions>
199       </plugin>
200     </plugins>
201   </build>
202   <scm>
203     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
204     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
205     <tag>HEAD</tag>
206     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
207   </scm>
208 </project>