Merge "Clean up Maven dependencies (part 1)"
[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.4.0-SNAPSHOT</version>
10     <relativePath>../commons/parent</relativePath>
11   </parent>
12
13   <artifactId>ovsdb-plugin-compatibility-layer</artifactId>
14   <version>1.2.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>junit</groupId>
42       <artifactId>junit</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.apache.felix</groupId>
47       <artifactId>org.apache.felix.dependencymanager</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.ovsdb</groupId>
55       <artifactId>plugin</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.ovsdb</groupId>
59       <artifactId>library</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller.model</groupId>
63       <artifactId>model-inventory</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.slf4j</groupId>
67       <artifactId>slf4j-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>com.google.guava</groupId>
71       <artifactId>guava</artifactId>
72     </dependency>
73   </dependencies>
74
75   <build>
76     <testResources>
77       <testResource>
78         <filtering>true</filtering>
79         <directory>src/test/resources</directory>
80       </testResource>
81     </testResources>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.felix</groupId>
85         <artifactId>maven-bundle-plugin</artifactId>
86         <version>2.4.0</version>
87         <extensions>true</extensions>
88         <configuration>
89           <instructions>
90             <Import-Package>
91               org.opendaylight.controller.sal.core,
92               org.opendaylight.controller.sal.utils,
93               org.opendaylight.ovsdb.plugin.api,
94               org.apache.commons.lang3.builder,
95               org.apache.commons.lang3.tuple,
96               org.apache.felix.dm,
97               org.slf4j,
98               org.eclipse.osgi.framework.console,
99               org.osgi.framework,
100               javax.net.ssl,
101               *
102             </Import-Package>
103             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
104             <Embed-Transitive>true</Embed-Transitive>
105             <Bundle-Activator>org.opendaylight.ovsdb.compatibility.plugin.internal.Activator</Bundle-Activator>
106             <Private-Package>
107               org.opendaylight.ovsdb.compatibility.plugin.impl,
108               org.opendaylight.ovsdb.compatibility.plugin.internal
109             </Private-Package>
110             <Export-Package>
111               org.opendaylight.ovsdb.compatibility.plugin,
112               org.opendaylight.ovsdb.compatibility.plugin.api,
113               org.opendaylight.ovsdb.compatibility.plugin.error
114             </Export-Package>
115           </instructions>
116           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
117         </configuration>
118       </plugin>
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-checkstyle-plugin</artifactId>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-failsafe-plugin</artifactId>
126       </plugin>
127       <plugin>
128         <groupId>org.jacoco</groupId>
129         <artifactId>jacoco-maven-plugin</artifactId>
130       </plugin>
131     </plugins>
132   </build>
133 </project>