749c89413e674a57807db6c7768fa1ad598b38ee
[controller.git] / opendaylight / config / config-persister-api / 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>config-subsystem</artifactId>
7     <version>0.8.0-SNAPSHOT</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>config-persister-api</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>config-util</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>com.google.guava</groupId>
21       <artifactId>guava</artifactId>
22     </dependency>
23   </dependencies>
24
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.felix</groupId>
29         <artifactId>maven-bundle-plugin</artifactId>
30       </plugin>
31       <!-- test jar -->
32       <plugin>
33         <groupId>org.apache.maven.plugins</groupId>
34         <artifactId>maven-jar-plugin</artifactId>
35         <executions>
36           <execution>
37             <goals>
38               <goal>test-jar</goal>
39             </goals>
40             <phase>package</phase>
41           </execution>
42         </executions>
43       </plugin>
44     </plugins>
45   </build>
46 </project>