Initial commit of the akka based distributed-datastore
[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>org.opendaylight.controller</groupId>
20       <artifactId>sal-core-spi</artifactId>
21     </dependency>
22
23     <dependency>
24       <groupId>junit</groupId>
25       <artifactId>junit</artifactId>
26       <scope>test</scope>
27     </dependency>
28     <dependency>
29       <groupId>org.mockito</groupId>
30       <artifactId>mockito-all</artifactId>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.slf4j</groupId>
35       <artifactId>slf4j-simple</artifactId>
36       <version>${slf4j.version}</version>
37       <scope>test</scope>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43
44       <plugin>
45         <groupId>org.apache.felix</groupId>
46         <artifactId>maven-bundle-plugin</artifactId>
47         <extensions>true</extensions>
48         <configuration>
49           <instructions>
50             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
51             <Export-package></Export-package>
52             <Private-Package></Private-Package>
53           </instructions>
54         </configuration>
55       </plugin>
56
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-jar-plugin</artifactId>
60         <executions>
61           <execution>
62             <goals>
63               <goal>test-jar</goal>
64             </goals>
65           </execution>
66         </executions>
67       </plugin>
68       <plugin>
69         <groupId>org.jacoco</groupId>
70         <artifactId>jacoco-maven-plugin</artifactId>
71         <configuration>
72           <includes>
73             <include>org.opendaylight.controller.*</include>
74           </includes>
75           <check>false</check>
76         </configuration>
77         <executions>
78           <execution>
79             <id>pre-test</id>
80             <goals>
81               <goal>prepare-agent</goal>
82             </goals>
83           </execution>
84           <execution>
85             <id>post-test</id>
86             <goals>
87               <goal>report</goal>
88             </goals>
89             <phase>test</phase>
90           </execution>
91         </executions>
92       </plugin>
93     </plugins>
94   </build>
95   <scm>
96     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
97     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
98     <tag>HEAD</tag>
99     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
100   </scm>
101 </project>