Adding auto-sorting plugin to all Controller via parent/pom.xml
[controller.git] / opendaylight / config / netty-threadgroup-config / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.opendaylight.controller</groupId>
9     <artifactId>config-plugin-parent</artifactId>
10     <version>0.2.5-SNAPSHOT</version>
11     <relativePath>../config-plugin-parent</relativePath>
12   </parent>
13   <artifactId>netty-threadgroup-config</artifactId>
14   <packaging>bundle</packaging>
15   <name>${project.artifactId}</name>
16   <description>Configuration Wrapper around netty's event group</description>
17   <prerequisites>
18     <maven>3.0.4</maven>
19   </prerequisites>
20
21   <dependencies>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>config-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>netty-config-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.yangtools</groupId>
32       <artifactId>mockito-configuration</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.slf4j</groupId>
36       <artifactId>slf4j-api</artifactId>
37     </dependency>
38
39     <!--test dependencies -->
40     <dependency>
41       <groupId>junit</groupId>
42       <artifactId>junit</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>config-manager</artifactId>
48       <type>test-jar</type>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>config-manager</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>config-util</artifactId>
59       <scope>test</scope>
60     </dependency>
61
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <extensions>true</extensions>
70         <configuration>
71           <instructions>
72             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
73             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.threadgroup.rev131107.*,</Export-Package>
74           </instructions>
75         </configuration>
76       </plugin>
77
78       <plugin>
79         <groupId>org.opendaylight.yangtools</groupId>
80         <artifactId>yang-maven-plugin</artifactId>
81       </plugin>
82     </plugins>
83   </build>
84
85   <distributionManagement>
86     <site>
87       <id>${project.artifactId}</id>
88       <name>NETTY-THREADGROUP-CONFIG Module site</name>
89       <url>${basedir}/target/site/${project.artifactId}</url>
90     </site>
91   </distributionManagement>
92
93 </project>