Migrate from adsal Node to mdsal Node
[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     <dependency>
51       <groupId>org.slf4j</groupId>
52       <artifactId>slf4j-simple</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.powermock</groupId>
56       <artifactId>powermock-module-junit4</artifactId>
57       <version>1.5.4</version>
58       <scope>test</scope>
59     </dependency>
60   </dependencies>
61
62   <build>
63     <testResources>
64       <testResource>
65         <filtering>true</filtering>
66         <directory>src/test/resources</directory>
67       </testResource>
68     </testResources>
69     <plugins>
70       <plugin>
71         <groupId>org.apache.felix</groupId>
72         <artifactId>maven-bundle-plugin</artifactId>
73         <version>2.4.0</version>
74         <extensions>true</extensions>
75         <configuration>
76           <instructions>
77             <Import-Package>
78               org.opendaylight.controller.sal.core,
79               org.opendaylight.controller.sal.utils,
80               org.opendaylight.ovsdb.plugin.api,
81               org.apache.commons.lang3.builder,
82               org.apache.commons.lang3.tuple,
83               org.apache.felix.dm,
84               org.slf4j,
85               org.eclipse.osgi.framework.console,
86               org.osgi.framework,
87               javax.net.ssl,
88               *
89             </Import-Package>
90             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
91             <Embed-Transitive>true</Embed-Transitive>
92             <Bundle-Activator>org.opendaylight.ovsdb.compatibility.plugin.internal.Activator</Bundle-Activator>
93             <Private-Package>
94               org.opendaylight.ovsdb.compatibility.plugin.impl,
95               org.opendaylight.ovsdb.compatibility.plugin.internal
96             </Private-Package>
97             <Export-Package>
98               org.opendaylight.ovsdb.compatibility.plugin,
99               org.opendaylight.ovsdb.compatibility.plugin.api,
100               org.opendaylight.ovsdb.compatibility.plugin.error
101             </Export-Package>
102           </instructions>
103           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
104         </configuration>
105       </plugin>
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-checkstyle-plugin</artifactId>
109       </plugin>
110       <plugin>
111         <groupId>org.apache.maven.plugins</groupId>
112         <artifactId>maven-failsafe-plugin</artifactId>
113       </plugin>
114       <plugin>
115         <groupId>org.jacoco</groupId>
116         <artifactId>jacoco-maven-plugin</artifactId>
117       </plugin>
118     </plugins>
119   </build>
120   <scm>
121     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
122     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
123     <tag>HEAD</tag>
124     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
125   </scm>
126 </project>