Merge "Move protocol framework from BGPCEP project"
[controller.git] / opendaylight / commons / protocol-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     <modelVersion>4.0.0</modelVersion>
7     <parent>
8         <groupId>org.opendaylight.controller</groupId>
9         <artifactId>commons.opendaylight</artifactId>
10         <version>1.4.1-SNAPSHOT</version>
11         <relativePath>../../commons/opendaylight</relativePath>
12     </parent>
13     <scm>
14         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
15         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
16         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
17         <tag>HEAD</tag>
18     </scm>
19
20     <artifactId>protocol-framework</artifactId>
21     <version>${protocol-framework.version}</version>
22     <description>Common protocol framework</description>
23     <packaging>bundle</packaging>
24     <name>${project.artifactId}</name>
25     <prerequisites>
26         <maven>3.0.4</maven>
27     </prerequisites>
28
29     <dependencies>
30         <dependency>
31             <groupId>io.netty</groupId>
32             <artifactId>netty-buffer</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>io.netty</groupId>
36             <artifactId>netty-codec</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>io.netty</groupId>
40             <artifactId>netty-common</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>io.netty</groupId>
44             <artifactId>netty-transport</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.google.guava</groupId>
48             <artifactId>guava</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.google.code.findbugs</groupId>
52             <artifactId>jsr305</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.slf4j</groupId>
56             <artifactId>slf4j-api</artifactId>
57         </dependency>
58
59         <!-- Testing dependencies -->
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>mockito-configuration</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>junit</groupId>
66             <artifactId>junit</artifactId>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.felix</groupId>
74                 <artifactId>maven-bundle-plugin</artifactId>
75                 <extensions>true</extensions>
76                 <configuration>
77                     <instructions>
78                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
79                     </instructions>
80                 </configuration>
81             </plugin>
82             <plugin>
83                 <groupId>org.apache.maven.plugins</groupId>
84                 <artifactId>maven-jar-plugin</artifactId>
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 </project>