Clean-up pom.xml layout
[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.odlparent</groupId>
6     <artifactId>odlparent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <version>0.6.0-SNAPSHOT</version>
13   <artifactId>config-persister-api</artifactId>
14   <packaging>bundle</packaging>
15   <name>${project.artifactId}</name>
16
17   <dependencyManagement>
18     <dependencies>
19       <dependency>
20         <groupId>org.opendaylight.controller</groupId>
21         <artifactId>config-artifacts</artifactId>
22         <version>0.6.0-SNAPSHOT</version>
23         <type>pom</type>
24         <scope>import</scope>
25       </dependency>
26     </dependencies>
27   </dependencyManagement>
28
29   <dependencies>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>config-util</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>com.google.guava</groupId>
36       <artifactId>guava</artifactId>
37     </dependency>
38   </dependencies>
39
40   <build>
41     <plugins>
42       <plugin>
43         <groupId>org.apache.felix</groupId>
44         <artifactId>maven-bundle-plugin</artifactId>
45       </plugin>
46       <!-- test jar -->
47       <plugin>
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-jar-plugin</artifactId>
50         <executions>
51           <execution>
52             <goals>
53               <goal>test-jar</goal>
54             </goals>
55             <phase>package</phase>
56           </execution>
57         </executions>
58       </plugin>
59     </plugins>
60   </build>
61 </project>