Merge "Ovsdb plugin compatibility layer"
[netvirt.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" 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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10
11   <artifactId>ovsdb-plugin-compatibility-layer</artifactId>
12   <version>1.1.0-SNAPSHOT</version>
13   <name>OpenDaylight OVSDB Plugin Compatibility Layer</name>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>com.fasterxml.jackson.core</groupId>
19       <artifactId>jackson-databind</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>commons-collections</groupId>
23       <artifactId>commons-collections</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>equinoxSDK381</groupId>
27       <artifactId>org.eclipse.osgi</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>junit</groupId>
31       <artifactId>junit</artifactId>
32       <scope>test</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.apache.felix</groupId>
36       <artifactId>org.apache.felix.dependencymanager</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.ovsdb</groupId>
44       <artifactId>plugin</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.slf4j</groupId>
48       <artifactId>slf4j-api</artifactId>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <testResources>
54       <testResource>
55         <filtering>true</filtering>
56         <directory>src/test/resources</directory>
57       </testResource>
58     </testResources>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.felix</groupId>
62         <artifactId>maven-bundle-plugin</artifactId>
63         <version>2.4.0</version>
64         <extensions>true</extensions>
65         <configuration>
66           <instructions>
67             <Import-Package>
68               org.opendaylight.controller.sal.core,
69               org.opendaylight.controller.sal.utils,
70               org.opendaylight.ovsdb.plugin.api,
71               org.apache.commons.lang3.builder,
72               org.apache.commons.lang3.tuple,
73               org.apache.felix.dm,
74               org.slf4j,
75               org.eclipse.osgi.framework.console,
76               org.osgi.framework,
77               javax.net.ssl,
78               *
79             </Import-Package>
80             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
81             <Embed-Transitive>true</Embed-Transitive>
82             <Bundle-Activator>org.opendaylight.ovsdb.compatibility.plugin.internal.Activator</Bundle-Activator>
83             <Private-Package>
84               org.opendaylight.ovsdb.compatibility.plugin.impl,
85               org.opendaylight.ovsdb.compatibility.plugin.internal
86             </Private-Package>
87             <Export-Package>
88               org.opendaylight.ovsdb.compatibility.plugin,
89               org.opendaylight.ovsdb.compatibility.plugin.api,
90               org.opendaylight.ovsdb.compatibility.plugin.error
91             </Export-Package>
92           </instructions>
93           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
94         </configuration>
95       </plugin>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-checkstyle-plugin</artifactId>
99       </plugin>
100       <plugin>
101         <groupId>org.apache.maven.plugins</groupId>
102         <artifactId>maven-failsafe-plugin</artifactId>
103       </plugin>
104       <plugin>
105         <groupId>org.jacoco</groupId>
106         <artifactId>jacoco-maven-plugin</artifactId>
107       </plugin>
108     </plugins>
109   </build>
110   <scm>
111     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
112     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
113     <tag>HEAD</tag>
114     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
115   </scm>
116 </project>