efeeadacc531e37787639a78ff2682a46889245d
[mdsal.git] / dom / mdsal-dom-inmemory-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.mdsal</groupId>
6     <artifactId>mdsal-dom</artifactId>
7     <version>2.0.0-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>mdsal-dom-inmemory-datastore</artifactId>
11
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>com.google.guava</groupId>
17       <artifactId>guava</artifactId>
18     </dependency>
19
20     <dependency>
21       <groupId>org.opendaylight.mdsal</groupId>
22       <artifactId>mdsal-common-api</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.yangtools</groupId>
34       <artifactId>concepts</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>util</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>yang-common</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-data-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>yang-data-impl</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>yang-parser-impl</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.osgi</groupId>
58       <artifactId>org.osgi.core</artifactId>
59     </dependency>
60
61     <dependency>
62       <groupId>org.slf4j</groupId>
63       <artifactId>slf4j-api</artifactId>
64     </dependency>
65
66     <!-- Test Dependencies -->
67     <dependency>
68       <groupId>junit</groupId>
69       <artifactId>junit</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.slf4j</groupId>
74       <artifactId>slf4j-simple</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>mockito-configuration</artifactId>
80       <scope>test</scope>
81     </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.felix</groupId>
88         <artifactId>maven-bundle-plugin</artifactId>
89         <extensions>true</extensions>
90         <configuration>
91           <instructions>
92             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
93
94             <Export-Package>org.opendaylight.mdsal.md.sal.dom.store.impl.*</Export-Package>
95
96             <Import-Package>*</Import-Package>
97           </instructions>
98         </configuration>
99       </plugin>
100       <plugin>
101         <groupId>org.jacoco</groupId>
102         <artifactId>jacoco-maven-plugin</artifactId>
103         <configuration>
104           <includes>
105             <include>org.opendaylight.mdsal.*</include>
106           </includes>
107           <check>false</check>
108         </configuration>
109         <executions>
110           <execution>
111             <id>pre-test</id>
112             <goals>
113               <goal>prepare-agent</goal>
114             </goals>
115           </execution>
116           <execution>
117             <id>post-test</id>
118             <goals>
119               <goal>report</goal>
120             </goals>
121             <phase>test</phase>
122           </execution>
123         </executions>
124       </plugin>
125     </plugins>
126   </build>
127   <scm>
128     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
129     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
130     <tag>HEAD</tag>
131     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
132   </scm>
133
134 </project>