Decouple config and netconf subsystems.
[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.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.4.0-SNAPSHOT</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>config-util</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <!-- compile dependencies -->
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.yangtools</groupId>
26       <artifactId>yang-data-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.yangtools</groupId>
30       <artifactId>yang-model-api</artifactId>
31     </dependency>
32     <!-- test dependencies -->
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>mockito-configuration</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>xmlunit</groupId>
39       <artifactId>xmlunit</artifactId>
40       <scope>test</scope>
41     </dependency>
42   </dependencies>
43
44   <build>
45     <plugins>
46       <!-- test jar -->
47       <plugin>
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-jar-plugin</artifactId>
50       </plugin>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54         <configuration>
55           <instructions>
56             <Export-Package>org.opendaylight.controller.config.util.*</Export-Package>
57           </instructions>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62
63 </project>