Remove protocol-framework config yang
[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>1.8.0-Carbon</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     <dependency>
63       <groupId>ch.qos.logback</groupId>
64       <artifactId>logback-classic</artifactId>
65       <scope>test</scope>
66     </dependency>
67   </dependencies>
68
69   <build>
70     <plugins>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-jar-plugin</artifactId>
74         <executions>
75           <execution>
76             <goals>
77               <goal>test-jar</goal>
78             </goals>
79             <phase>package</phase>
80           </execution>
81         </executions>
82       </plugin>
83     </plugins>
84   </build>
85
86   <scm>
87     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
88     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
89     <tag>HEAD</tag>
90     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
91   </scm>
92 </project>