Merge "BUG-50 : added parsers for Notification and Error Object."
[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         <dependency>
64             <groupId>junit</groupId>
65             <artifactId>junit</artifactId>
66         </dependency>
67         </dependencies>
68
69         <build>
70                 <plugins>
71                         <plugin>
72                                 <groupId>org.apache.felix</groupId>
73                                 <artifactId>maven-bundle-plugin</artifactId>
74                                 <version>${maven.bundle.version}</version>
75                                 <extensions>true</extensions>
76                                 <configuration>
77                                         <instructions>
78                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
79                                                 <Export-Package>
80                                                         org.opendaylight.protocol.framework,
81                                                 </Export-Package>
82                                         </instructions>
83                                 </configuration>
84                         </plugin>
85                         <plugin>
86                                 <groupId>org.apache.maven.plugins</groupId>
87                                 <artifactId>maven-jar-plugin</artifactId>
88                                 <version>2.4</version>
89                                 <executions>
90                                         <execution>
91                                                 <phase>package</phase>
92                                                 <goals>
93                                                         <goal>test-jar</goal>
94                                                 </goals>
95                                         </execution>
96                                 </executions>
97                         </plugin>
98                 </plugins>
99         </build>
100
101         <distributionManagement>
102                 <site>
103                         <id>${project.artifactId}</id>
104                         <name>COMMON-PROTOCOL Module site</name>
105                         <url>${basedir}/target/site/${project.artifactId}</url>
106                 </site>
107         </distributionManagement>
108
109 </project>