52901199b4659ee517ec356eb2d95ed092333dac
[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
7   <parent>
8     <groupId>org.opendaylight.odlparent</groupId>
9     <artifactId>bundle-parent</artifactId>
10     <version>2.0.4</version>
11     <relativePath/>
12   </parent>
13
14   <groupId>org.opendaylight.controller</groupId>
15   <artifactId>protocol-framework</artifactId>
16   <version>0.10.0-SNAPSHOT</version>
17   <packaging>bundle</packaging>
18   <name>${project.artifactId}</name>
19   <description>Common protocol framework</description>
20
21   <dependencies>
22     <dependency>
23       <groupId>com.google.guava</groupId>
24       <artifactId>guava</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>io.netty</groupId>
28       <artifactId>netty-buffer</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>io.netty</groupId>
32       <artifactId>netty-codec</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>io.netty</groupId>
36       <artifactId>netty-common</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>io.netty</groupId>
40       <artifactId>netty-transport</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45     </dependency>
46
47     <!-- Testing dependencies -->
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>mockito-configuration</artifactId>
51       <version>1.2.0-SNAPSHOT</version>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.osgi</groupId>
56       <artifactId>org.osgi.core</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-api</artifactId>
61     </dependency>
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-jar-plugin</artifactId>
69         <executions>
70           <execution>
71             <goals>
72               <goal>test-jar</goal>
73             </goals>
74             <phase>package</phase>
75           </execution>
76         </executions>
77       </plugin>
78     </plugins>
79   </build>
80
81   <scm>
82     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
83     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
84     <tag>HEAD</tag>
85     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
86   </scm>
87 </project>