Merge "Increase timeout for waiting for broker service in sal-binding-it."
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.controller</groupId>
8         <artifactId>commons.opendaylight</artifactId>
9         <version>1.4.2-SNAPSHOT</version>
10         <relativePath>../../commons/opendaylight</relativePath>
11     </parent>
12     <scm>
13         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
16         <tag>HEAD</tag>
17     </scm>
18
19     <artifactId>protocol-framework</artifactId>
20     <version>0.4.1-SNAPSHOT</version>
21     <description>Common protocol framework</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24     <prerequisites>
25         <maven>3.0.4</maven>
26     </prerequisites>
27
28     <dependencies>
29         <dependency>
30             <groupId>io.netty</groupId>
31             <artifactId>netty-buffer</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>io.netty</groupId>
35             <artifactId>netty-codec</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>io.netty</groupId>
39             <artifactId>netty-common</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>io.netty</groupId>
43             <artifactId>netty-transport</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>com.google.code.findbugs</groupId>
51             <artifactId>jsr305</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.slf4j</groupId>
55             <artifactId>slf4j-api</artifactId>
56         </dependency>
57
58         <!-- Testing dependencies -->
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>mockito-configuration</artifactId>
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                 <extensions>true</extensions>
75                 <configuration>
76                     <instructions>
77                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
78                     </instructions>
79                 </configuration>
80             </plugin>
81             <plugin>
82                 <groupId>org.apache.maven.plugins</groupId>
83                 <artifactId>maven-jar-plugin</artifactId>
84                 <executions>
85                     <execution>
86                         <phase>package</phase>
87                         <goals>
88                             <goal>test-jar</goal>
89                         </goals>
90                     </execution>
91                 </executions>
92             </plugin>
93         </plugins>
94     </build>
95 </project>