BUG-48: basic exporter implementation
[bgpcep.git] / framework / 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.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>framework</artifactId>
14         <description>Common protocol framework</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>io.netty</groupId>
24                         <artifactId>netty-buffer</artifactId>
25             <version>${netty.version}</version>
26                 </dependency>
27         <dependency>
28                         <groupId>io.netty</groupId>
29                         <artifactId>netty-codec</artifactId>
30             <version>${netty.version}</version>
31                 </dependency>
32         <dependency>
33                         <groupId>io.netty</groupId>
34                         <artifactId>netty-common</artifactId>
35             <version>${netty.version}</version>
36                 </dependency>
37         <dependency>
38                         <groupId>io.netty</groupId>
39                         <artifactId>netty-transport</artifactId>
40             <version>${netty.version}</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>com.google.guava</groupId>
44                         <artifactId>guava</artifactId>
45                         <version>${guava.version}</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>com.google.code.findbugs</groupId>
49                         <artifactId>jsr305</artifactId>
50                         <version>2.0.1</version>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.slf4j</groupId>
54                         <artifactId>slf4j-api</artifactId>
55                         <version>${slf4j.version}</version>
56                 </dependency>
57                 <dependency>
58                         <groupId>org.opendaylight.bgpcep</groupId>
59                         <artifactId>mockito-configuration</artifactId>
60             <version>${project.version}</version>
61                         <scope>test</scope>
62                 </dependency>
63         </dependencies>
64
65         <build>
66                 <plugins>
67                         <plugin>
68                                 <groupId>org.apache.felix</groupId>
69                                 <artifactId>maven-bundle-plugin</artifactId>
70                                 <version>${maven.bundle.version}</version>
71                                 <extensions>true</extensions>
72                                 <configuration>
73                                         <instructions>
74                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
75                                                 <Export-Package>
76                                                         org.opendaylight.protocol.framework,
77                                                 </Export-Package>
78                                         </instructions>
79                                 </configuration>
80                         </plugin>
81                         <plugin>
82                                 <groupId>org.apache.maven.plugins</groupId>
83                                 <artifactId>maven-jar-plugin</artifactId>
84                                 <version>2.4</version>
85                                 <executions>
86                                         <execution>
87                                                 <phase>package</phase>
88                                                 <goals>
89                                                         <goal>test-jar</goal>
90                                                 </goals>
91                                         </execution>
92                                 </executions>
93                         </plugin>
94                 </plugins>
95         </build>
96
97         <distributionManagement>
98                 <site>
99                         <id>${project.artifactId}</id>
100                         <name>COMMON-PROTOCOL Module site</name>
101                         <url>${basedir}/target/site/${project.artifactId}</url>
102                 </site>
103         </distributionManagement>
104
105 </project>