Merge "Added flags for flow removed event"
[controller.git] / opendaylight / config / netty-timer-config / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3    <parent>
4       <groupId>org.opendaylight.controller</groupId>
5       <artifactId>config-subsystem</artifactId>
6       <version>0.2.3-SNAPSHOT</version>
7    </parent>
8    <modelVersion>4.0.0</modelVersion>
9    <artifactId>netty-timer-config</artifactId>
10    <description>Configuration Wrapper around netty's timer</description>
11    <packaging>bundle</packaging>
12    <name>${project.artifactId}</name>
13    <prerequisites>
14       <maven>3.0.4</maven>
15    </prerequisites>
16
17    <dependencies>
18       <dependency>
19          <groupId>org.opendaylight.controller</groupId>
20          <artifactId>config-api</artifactId>
21       </dependency>
22       <dependency>
23          <groupId>org.opendaylight.controller</groupId>
24          <artifactId>netty-config-api</artifactId>
25          <version>${project.version}</version>
26       </dependency>
27       <dependency>
28          <groupId>org.opendaylight.controller</groupId>
29          <artifactId>threadpool-config-api</artifactId>
30          <version>${project.version}</version>
31       </dependency>
32       <dependency>
33          <groupId>org.slf4j</groupId>
34          <artifactId>slf4j-api</artifactId>
35       </dependency>
36
37       <!--test dependencies -->
38       <dependency>
39          <groupId>junit</groupId>
40          <artifactId>junit</artifactId>
41          <scope>test</scope>
42       </dependency>
43       <dependency>
44          <groupId>org.opendaylight.controller</groupId>
45          <artifactId>config-manager</artifactId>
46          <scope>test</scope>
47          <type>test-jar</type>
48       </dependency>
49       <dependency>
50          <groupId>org.opendaylight.controller</groupId>
51          <artifactId>config-manager</artifactId>
52          <scope>test</scope>
53       </dependency>
54       <dependency>
55          <groupId>org.opendaylight.controller</groupId>
56          <artifactId>config-util</artifactId>
57          <scope>test</scope>
58       </dependency>
59       <dependency>
60          <groupId>org.opendaylight.bgpcep</groupId>
61          <artifactId>mockito-configuration</artifactId>
62          <scope>test</scope>
63       </dependency>
64       <dependency>
65          <groupId>org.opendaylight.controller</groupId>
66          <artifactId>threadpool-config-impl</artifactId>
67          <version>${project.version}</version>
68          <scope>test</scope>
69       </dependency>
70
71    </dependencies>
72
73    <build>
74       <plugins>
75          <plugin>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>yang-maven-plugin</artifactId>
78          </plugin>
79          <plugin>
80             <groupId>org.apache.felix</groupId>
81             <artifactId>maven-bundle-plugin</artifactId>
82             <extensions>true</extensions>
83             <configuration>
84                <instructions>
85                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
86                   <Export-Package>
87                   </Export-Package>
88                   <Import-Package>
89                      javax.management,
90                      com.google.common.base,
91                      org.opendaylight.controller.config.yang.netty,
92                      org.opendaylight.controller.config.yang.threadpool,
93                      io.netty.util,
94                      org.opendaylight.controller.config.api,
95                      org.opendaylight.controller.config.api.annotations,
96                      org.opendaylight.controller.config.api.runtime,
97                      org.opendaylight.controller.config.spi,
98                      org.slf4j,
99                      org.osgi.framework
100                   </Import-Package>
101                </instructions>
102             </configuration>
103          </plugin>
104       </plugins>
105    </build>
106
107    <distributionManagement>
108       <site>
109          <id>${project.artifactId}</id>
110          <name>NETTY-TIMER-CONFIG Module site</name>
111          <url>${basedir}/target/site/${project.artifactId}</url>
112       </site>
113    </distributionManagement>
114 </project>