b8a502d5c59de8a0008a14e281bf8134cd5f3e9e
[ovsdb.git] / utils / yang-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.odlparent</groupId>
8     <artifactId>bundle-parent</artifactId>
9     <version>1.7.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.ovsdb</groupId>
14   <artifactId>utils.yang-utils</artifactId>
15   <version>1.3.0-SNAPSHOT</version>
16   <packaging>bundle</packaging>
17
18   <dependencies>
19     <dependency>
20       <groupId>junit</groupId>
21       <artifactId>junit</artifactId>
22       <scope>test</scope>
23     </dependency>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>com.google.code.findbugs</groupId>
30       <artifactId>jsr305</artifactId>
31     </dependency>
32   </dependencies>
33
34   <build>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <extensions>true</extensions>
40         <configuration>
41           <instructions>
42             <Export-Package>
43               org.opendaylight.ovsdb.utils.yang
44             </Export-Package>
45           </instructions>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50 </project>