Merge "Fixed bug in Data store where multiple readers could overwrite other augmentat...
[controller.git] / opendaylight / config / threadpool-config-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" 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    <parent>
6       <groupId>org.opendaylight.controller</groupId>
7         <artifactId>config-plugin-parent</artifactId>
8         <version>0.2.3-SNAPSHOT</version>
9         <relativePath>../config-plugin-parent</relativePath>
10    </parent>
11    <modelVersion>4.0.0</modelVersion>
12    <artifactId>threadpool-config-api</artifactId>
13    <name>${project.artifactId}</name>
14    <packaging>bundle</packaging>
15    <prerequisites>
16       <maven>3.0.4</maven>
17    </prerequisites>
18
19     <dependencies>
20         <dependency>
21             <groupId>org.opendaylight.controller</groupId>
22             <artifactId>config-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>com.google.guava</groupId>
26             <artifactId>guava</artifactId>
27         </dependency>
28     </dependencies>
29
30    <build>
31       <plugins>
32          <plugin>
33             <groupId>org.apache.felix</groupId>
34             <artifactId>maven-bundle-plugin</artifactId>
35             <configuration>
36                <instructions>
37                   <Export-Package>
38                      org.opendaylight.controller.config.threadpool,
39                      org.opendaylight.controller.config.yang.threadpool,
40                      org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.threadpool.rev130409.*,
41                   </Export-Package>
42                </instructions>
43             </configuration>
44          </plugin>
45          <plugin>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-maven-plugin</artifactId>
48          </plugin>
49       </plugins>
50    </build>
51 </project>