Merge "additional southbound-it for port/interface"
[ovsdb.git] / ovsdb-plugin-compatibility-layer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.ovsdb</groupId>
8     <artifactId>commons</artifactId>
9     <version>1.3.0-SNAPSHOT</version>
10     <relativePath>../commons/parent</relativePath>
11   </parent>
12
13   <artifactId>ovsdb-plugin-compatibility-layer</artifactId>
14   <version>1.1.0-SNAPSHOT</version>
15   <name>${project.artifactId}</name>
16   <packaging>bundle</packaging>
17   <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>
18   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
19   <licenses>
20     <license>
21       <name>Eclipse Public License v1.0</name>
22       <url>http://www.eclipse.org/legal/epl-v10.html</url>
23     </license>
24   </licenses>
25   <developers>
26     <developer>
27       <name>Sam Hague</name>
28       <email>shague@gmail.com</email>
29       <url>https://github.com/shague</url>
30     </developer>
31   </developers>
32   <scm>
33     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
34     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
35     <tag>HEAD</tag>
36     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
37   </scm>
38
39   <dependencies>
40     <dependency>
41       <groupId>com.fasterxml.jackson.core</groupId>
42       <artifactId>jackson-databind</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>commons-collections</groupId>
46       <artifactId>commons-collections</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>equinoxSDK381</groupId>
50       <artifactId>org.eclipse.osgi</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.apache.felix</groupId>
59       <artifactId>org.apache.felix.dependencymanager</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.ovsdb</groupId>
67       <artifactId>plugin</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.slf4j</groupId>
71       <artifactId>slf4j-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.slf4j</groupId>
75       <artifactId>slf4j-simple</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.powermock</groupId>
79       <artifactId>powermock-module-junit4</artifactId>
80       <version>1.5.4</version>
81       <scope>test</scope>
82     </dependency>
83   </dependencies>
84
85   <build>
86     <testResources>
87       <testResource>
88         <filtering>true</filtering>
89         <directory>src/test/resources</directory>
90       </testResource>
91     </testResources>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.felix</groupId>
95         <artifactId>maven-bundle-plugin</artifactId>
96         <version>2.4.0</version>
97         <extensions>true</extensions>
98         <configuration>
99           <instructions>
100             <Import-Package>
101               org.opendaylight.controller.sal.core,
102               org.opendaylight.controller.sal.utils,
103               org.opendaylight.ovsdb.plugin.api,
104               org.apache.commons.lang3.builder,
105               org.apache.commons.lang3.tuple,
106               org.apache.felix.dm,
107               org.slf4j,
108               org.eclipse.osgi.framework.console,
109               org.osgi.framework,
110               javax.net.ssl,
111               *
112             </Import-Package>
113             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
114             <Embed-Transitive>true</Embed-Transitive>
115             <Bundle-Activator>org.opendaylight.ovsdb.compatibility.plugin.internal.Activator</Bundle-Activator>
116             <Private-Package>
117               org.opendaylight.ovsdb.compatibility.plugin.impl,
118               org.opendaylight.ovsdb.compatibility.plugin.internal
119             </Private-Package>
120             <Export-Package>
121               org.opendaylight.ovsdb.compatibility.plugin,
122               org.opendaylight.ovsdb.compatibility.plugin.api,
123               org.opendaylight.ovsdb.compatibility.plugin.error
124             </Export-Package>
125           </instructions>
126           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
127         </configuration>
128       </plugin>
129       <plugin>
130         <groupId>org.apache.maven.plugins</groupId>
131         <artifactId>maven-checkstyle-plugin</artifactId>
132       </plugin>
133       <plugin>
134         <groupId>org.apache.maven.plugins</groupId>
135         <artifactId>maven-failsafe-plugin</artifactId>
136       </plugin>
137       <plugin>
138         <groupId>org.jacoco</groupId>
139         <artifactId>jacoco-maven-plugin</artifactId>
140       </plugin>
141     </plugins>
142   </build>
143 </project>