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