Merge "SAL Actions Property is OF1.0 specific"
[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"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <parent>
7         <groupId>org.opendaylight.controller</groupId>
8         <artifactId>config-subsystem</artifactId>
9         <version>0.2.3-SNAPSHOT</version>
10     </parent>
11
12     <modelVersion>4.0.0</modelVersion>
13     <artifactId>netty-threadgroup-config</artifactId>
14     <description>Configuration Wrapper around netty's event group</description>
15     <packaging>bundle</packaging>
16     <name>${project.artifactId}</name>
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>threadpool-config-api</artifactId>
29             <version>${project.version}</version>
30         </dependency>
31
32         <dependency>
33             <groupId>org.slf4j</groupId>
34             <artifactId>slf4j-api</artifactId>
35         </dependency>
36
37
38         <dependency>
39             <groupId>com.google.guava</groupId>
40             <artifactId>guava</artifactId>
41         </dependency>
42
43         <!--test dependencies -->
44         <dependency>
45             <groupId>junit</groupId>
46             <artifactId>junit</artifactId>
47             <scope>test</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>config-manager</artifactId>
52             <scope>test</scope>
53             <type>test-jar</type>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller</groupId>
57             <artifactId>config-manager</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>config-util</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.bgpcep</groupId>
67             <artifactId>mockito-configuration</artifactId>
68             <scope>test</scope>
69         </dependency>
70
71     </dependencies>
72
73     <build>
74         <plugins>
75
76             <plugin>
77                 <groupId>org.opendaylight.yangtools</groupId>
78                 <artifactId>yang-maven-plugin</artifactId>
79             </plugin>
80
81
82             <plugin>
83                 <groupId>org.apache.felix</groupId>
84                 <artifactId>maven-bundle-plugin</artifactId>
85                 <version>2.3.7</version>
86                 <extensions>true</extensions>
87                 <configuration>
88                     <instructions>
89                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
90                         <Export-Package>
91                         </Export-Package>
92                         <Import-Package>
93                             com.google.common.base,
94                             io.netty.channel.nio,
95                             org.opendaylight.controller.config.yang.threadpool,
96                             io.netty.util.concurrent,
97                             org.opendaylight.controller.config.api,
98                             org.opendaylight.controller.config.api.annotations,
99                             org.opendaylight.controller.config.api.runtime,
100                             org.opendaylight.controller.config.spi,
101                             org.slf4j,
102                             org.osgi.framework
103                         </Import-Package>
104                     </instructions>
105                 </configuration>
106             </plugin>
107         </plugins>
108     </build>
109
110     <distributionManagement>
111         <site>
112             <id>${project.artifactId}</id>
113             <name>NETTY-THREADGROUP-CONFIG Module site</name>
114             <url>${basedir}/target/site/${project.artifactId}</url>
115         </site>
116     </distributionManagement>
117
118 </project>