Cleanup root pom "name".
[controller.git] / opendaylight / config / netty-timer-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   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>config-plugin-parent</artifactId>
8     <version>0.3.0-SNAPSHOT</version>
9     <relativePath>../config-plugin-parent</relativePath>
10   </parent>
11   <artifactId>netty-timer-config</artifactId>
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14   <description>Configuration Wrapper around netty's timer</description>
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>org.opendaylight.controller</groupId>
26       <artifactId>netty-config-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>threadpool-config-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools</groupId>
34       <artifactId>mockito-configuration</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.slf4j</groupId>
38       <artifactId>slf4j-api</artifactId>
39     </dependency>
40
41     <!--test dependencies -->
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>config-manager</artifactId>
50       <type>test-jar</type>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>config-manager</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>config-util</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>threadpool-config-impl</artifactId>
66       <scope>test</scope>
67     </dependency>
68
69   </dependencies>
70
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.felix</groupId>
75         <artifactId>maven-bundle-plugin</artifactId>
76         <extensions>true</extensions>
77         <configuration>
78           <instructions>
79             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
80             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.timer.rev131119.*,</Export-Package>
81           </instructions>
82         </configuration>
83       </plugin>
84       <plugin>
85         <groupId>org.opendaylight.yangtools</groupId>
86         <artifactId>yang-maven-plugin</artifactId>
87       </plugin>
88     </plugins>
89   </build>
90
91   <distributionManagement>
92     <site>
93       <id>${project.artifactId}</id>
94       <name>NETTY-TIMER-CONFIG Module site</name>
95       <url>${basedir}/target/site/${project.artifactId}</url>
96     </site>
97   </distributionManagement>
98 </project>