Merge "Updating fix for bug 3989 based on discussion in OVSDB meeting"
[ovsdb.git] / plugin-shell / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.4.0-SNAPSHOT</version>
18     <relativePath>../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>plugin-shell</artifactId>
22   <version>1.2.1-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
25   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <dependencies>
47     <dependency>
48       <groupId>junit</groupId>
49       <artifactId>junit</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.apache.karaf.shell</groupId>
54       <artifactId>org.apache.karaf.shell.console</artifactId>
55       <version>${karaf.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>com.fasterxml.jackson.core</groupId>
59       <artifactId>jackson-databind</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.ovsdb</groupId>
63       <artifactId>library</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.ovsdb</groupId>
67       <artifactId>plugin</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller.model</groupId>
71       <artifactId>model-inventory</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.slf4j</groupId>
75       <artifactId>slf4j-simple</artifactId>
76       <scope>test</scope>
77     </dependency>
78   </dependencies>
79
80   <build>
81     <plugins>
82       <plugin>
83         <groupId>org.apache.felix</groupId>
84         <artifactId>maven-bundle-plugin</artifactId>
85         <version>2.4.0</version>
86         <extensions>true</extensions>
87       </plugin>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-checkstyle-plugin</artifactId>
91       </plugin>
92       <plugin>
93         <groupId>org.jacoco</groupId>
94         <artifactId>jacoco-maven-plugin</artifactId>
95       </plugin>
96     </plugins>
97   </build>
98
99 </project>