Merge "Bug 3136: Delete output port from instruction should use order instead of...
[netvirt.git] / plugin / 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.3.0-SNAPSHOT</version>
18     <relativePath>../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>plugin</artifactId>
22   <version>1.1.0-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>com.fasterxml.jackson.core</groupId>
49       <artifactId>jackson-databind</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>com.google.guava</groupId>
53       <artifactId>guava</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>commons-collections</groupId>
57       <artifactId>commons-collections</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>equinoxSDK381</groupId>
61       <artifactId>org.eclipse.osgi</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>io.netty</groupId>
65       <artifactId>netty-all</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>junit</groupId>
69       <artifactId>junit</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.apache.felix</groupId>
74       <artifactId>org.apache.felix.dependencymanager</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.ovsdb</groupId>
78       <artifactId>library</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.ovsdb</groupId>
82       <artifactId>schema.openvswitch</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.ovsdb</groupId>
86       <artifactId>utils.config</artifactId>
87       <version>${ovsdb.utils.config.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.controller.model</groupId>
91       <artifactId>model-inventory</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.slf4j</groupId>
95       <artifactId>slf4j-api</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.slf4j</groupId>
99       <artifactId>slf4j-simple</artifactId>
100     </dependency>
101   </dependencies>
102
103   <build>
104     <testResources>
105       <testResource>
106         <filtering>true</filtering>
107         <directory>src/test/resources</directory>
108       </testResource>
109     </testResources>
110     <plugins>
111       <plugin>
112         <groupId>org.apache.felix</groupId>
113         <artifactId>maven-bundle-plugin</artifactId>
114         <version>2.4.0</version>
115         <extensions>true</extensions>
116         <configuration>
117           <instructions>
118             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
119             <Embed-Transitive>true</Embed-Transitive>
120             <Bundle-Activator>org.opendaylight.ovsdb.plugin.internal.Activator</Bundle-Activator>
121             <Private-Package>
122               org.opendaylight.ovsdb.plugin.impl,
123               org.opendaylight.ovsdb.plugin.internal
124             </Private-Package>
125             <Export-Package>
126               org.opendaylight.ovsdb.plugin,
127               org.opendaylight.ovsdb.plugin.api,
128               org.opendaylight.ovsdb.plugin.error
129             </Export-Package>
130           </instructions>
131           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
132         </configuration>
133       </plugin>
134       <plugin>
135         <groupId>org.apache.maven.plugins</groupId>
136         <artifactId>maven-checkstyle-plugin</artifactId>
137       </plugin>
138       <plugin>
139         <groupId>org.apache.maven.plugins</groupId>
140         <artifactId>maven-failsafe-plugin</artifactId>
141       </plugin>
142       <plugin>
143         <groupId>org.jacoco</groupId>
144         <artifactId>jacoco-maven-plugin</artifactId>
145       </plugin>
146     </plugins>
147   </build>
148 </project>