Merge "Fixed rib-impl-config modules tests."
[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>commons.parent</artifactId>
9         <version>0.3.0-SNAPSHOT</version>
10         <relativePath>../commons/parent</relativePath>
11         </parent>
12
13         <modelVersion>4.0.0</modelVersion>
14         <artifactId>framework</artifactId>
15         <description>Common protocol framework</description>
16         <packaging>bundle</packaging>
17         <name>${project.artifactId}</name>
18         <prerequisites>
19                 <maven>3.0.4</maven>
20         </prerequisites>
21
22         <dependencies>
23         <dependency>
24                         <groupId>io.netty</groupId>
25                         <artifactId>netty-buffer</artifactId>
26                 </dependency>
27         <dependency>
28                         <groupId>io.netty</groupId>
29                         <artifactId>netty-codec</artifactId>
30                 </dependency>
31         <dependency>
32                         <groupId>io.netty</groupId>
33                         <artifactId>netty-common</artifactId>
34                 </dependency>
35         <dependency>
36                         <groupId>io.netty</groupId>
37                         <artifactId>netty-transport</artifactId>
38                 </dependency>
39                 <dependency>
40                         <groupId>com.google.guava</groupId>
41                         <artifactId>guava</artifactId>
42                 </dependency>
43                 <dependency>
44                         <groupId>com.google.code.findbugs</groupId>
45                         <artifactId>jsr305</artifactId>
46                 </dependency>
47                 <dependency>
48                         <groupId>org.slf4j</groupId>
49                         <artifactId>slf4j-api</artifactId>
50         </dependency>
51
52         <!-- Testing dependencies -->
53                 <dependency>
54                         <groupId>org.opendaylight.bgpcep</groupId>
55                         <artifactId>mockito-configuration</artifactId>
56                 </dependency>
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60         </dependency>
61         </dependencies>
62
63         <build>
64                 <plugins>
65                         <plugin>
66                                 <groupId>org.apache.felix</groupId>
67                                 <artifactId>maven-bundle-plugin</artifactId>
68                                 <extensions>true</extensions>
69                                 <configuration>
70                                         <instructions>
71                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
72                                         </instructions>
73                                 </configuration>
74                         </plugin>
75                         <plugin>
76                                 <groupId>org.apache.maven.plugins</groupId>
77                                 <artifactId>maven-jar-plugin</artifactId>
78                                 <executions>
79                                         <execution>
80                                                 <phase>package</phase>
81                                                 <goals>
82                                                         <goal>test-jar</goal>
83                                                 </goals>
84                                         </execution>
85                                 </executions>
86                         </plugin>
87                 </plugins>
88         </build>
89 </project>