Bump versions by x.(y+1).z for next dev cycle
[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.9.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.maven.plugins</groupId>
29         <artifactId>maven-checkstyle-plugin</artifactId>
30         <configuration>
31           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
32         </configuration>
33       </plugin>
34       <plugin>
35         <groupId>org.apache.felix</groupId>
36         <artifactId>maven-bundle-plugin</artifactId>
37       </plugin>
38       <!-- test jar -->
39       <plugin>
40         <groupId>org.apache.maven.plugins</groupId>
41         <artifactId>maven-jar-plugin</artifactId>
42         <executions>
43           <execution>
44             <goals>
45               <goal>test-jar</goal>
46             </goals>
47             <phase>package</phase>
48           </execution>
49         </executions>
50       </plugin>
51     </plugins>
52   </build>
53 </project>