Initial framework migration to netty.
[bgpcep.git] / concepts / bin / 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.bgpcep</groupId>
8                 <artifactId>protocol-parent</artifactId>
9                 <version>0.1</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>concepts</artifactId>
14         <description>Basic protocol concepts</description>
15         <packaging>bundle</packaging>
16         <version>1.0</version>
17         <name>${project.artifactId}</name>
18         <prerequisites>
19                 <maven>3.0.4</maven>
20         </prerequisites>
21
22         <dependencies>
23                 <dependency>
24                         <groupId>${project.groupId}</groupId>
25                         <artifactId>util</artifactId>
26                         <version>1.0</version>
27                 </dependency>
28                 <dependency>
29                         <groupId>com.google.code.findbugs</groupId>
30                         <artifactId>jsr305</artifactId>
31                         <version>2.0.1</version>
32                 </dependency>
33         </dependencies>
34
35         <build>
36                 <plugins>
37                         <plugin>
38                                 <groupId>org.apache.felix</groupId>
39                                 <artifactId>maven-bundle-plugin</artifactId>
40                                 <version>${maven.bundle.version}</version>
41                                 <extensions>true</extensions>
42                                 <configuration>
43                                         <instructions>
44                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
45                                                 <Import-Package>
46                                                         org.opendaylight.protocol.concepts,
47                             org.opendaylight.protocol.util,
48                             com.google.common.base,
49                             com.google.common.collect,
50                             com.google.common.net,
51                             com.google.common.primitives,
52                             com.google.guava;
53                                                         javax.management,
54                                                         org.slf4j.*,
55                                                         io.netty.channel,
56                                                 </Import-Package>
57                                                 <Export-Package>
58                             org.opendaylight.protocol.concepts,
59                                                 </Export-Package>
60                                         </instructions>
61                                 </configuration>
62                         </plugin>
63                         <plugin>
64                                 <groupId>org.apache.maven.plugins</groupId>
65                                 <artifactId>maven-checkstyle-plugin</artifactId>
66                                 <version>${checkstyle.version}</version>
67                                 <configuration>
68                                         <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
69                                         <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
70                                 </configuration>
71                         </plugin>
72                 </plugins>
73         </build>
74
75         <distributionManagement>
76                 <site>
77                         <id>${project.artifactId}</id>
78                         <name>NPS-CONCEPTS Module site</name>
79                         <url>${basedir}/target/site/${project.artifactId}</url>
80                 </site>
81         </distributionManagement>
82
83 </project>