Clean-up pom.xml layout
[controller.git] / opendaylight / config / config-util / 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>bundle-parent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>config-util</artifactId>
13   <version>0.6.0-SNAPSHOT</version>
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       <dependency>
27         <groupId>org.opendaylight.yangtools</groupId>
28         <artifactId>yangtools-artifacts</artifactId>
29         <version>1.1.0-SNAPSHOT</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35
36   <dependencies>
37     <!-- compile dependencies -->
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>config-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>com.google.guava</groupId>
44       <artifactId>guava</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>yang-data-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>yang-model-api</artifactId>
53     </dependency>
54     <!-- test dependencies -->
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>mockito-configuration</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>xmlunit</groupId>
61       <artifactId>xmlunit</artifactId>
62       <scope>test</scope>
63     </dependency>
64   </dependencies>
65
66   <build>
67     <plugins>
68       <!-- test jar -->
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-jar-plugin</artifactId>
72         <executions>
73           <execution>
74             <goals>
75               <goal>test-jar</goal>
76             </goals>
77             <phase>package</phase>
78           </execution>
79         </executions>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.felix</groupId>
83         <artifactId>maven-bundle-plugin</artifactId>
84         <configuration>
85           <instructions>
86             <Export-Package>org.opendaylight.controller.config.util.*</Export-Package>
87           </instructions>
88         </configuration>
89       </plugin>
90     </plugins>
91   </build>
92
93 </project>