ba42c4bb465f7777384901a7419d993cd02ab12c
[netvirt.git] / plugin / 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>plugin</artifactId>
12   <version>1.1.0-SNAPSHOT</version>
13   <name>OpenDaylight OVSDB Plugin</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>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>commons-collections</groupId>
27       <artifactId>commons-collections</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>equinoxSDK381</groupId>
31       <artifactId>org.eclipse.osgi</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>io.netty</groupId>
35       <artifactId>netty-all</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.felix</groupId>
44       <artifactId>org.apache.felix.dependencymanager</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>clustering.services</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal.connection</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.ovsdb</groupId>
60       <artifactId>library</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.ovsdb</groupId>
64       <artifactId>schema.openvswitch</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.ovsdb</groupId>
68       <artifactId>utils.config</artifactId>
69       <version>${ovsdb.utils.config.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.slf4j</groupId>
73       <artifactId>slf4j-api</artifactId>
74     </dependency>
75   </dependencies>
76
77   <build>
78     <testResources>
79       <testResource>
80         <filtering>true</filtering>
81         <directory>src/test/resources</directory>
82       </testResource>
83     </testResources>
84     <plugins>
85       <plugin>
86         <groupId>org.apache.felix</groupId>
87         <artifactId>maven-bundle-plugin</artifactId>
88         <version>2.4.0</version>
89         <extensions>true</extensions>
90         <configuration>
91           <instructions>
92             <Import-Package>
93               org.opendaylight.controller.sal.packet,
94               org.opendaylight.controller.sal.action,
95               org.opendaylight.controller.sal.discovery,
96               org.opendaylight.controller.sal.topology,
97               org.opendaylight.controller.sal.core,
98               org.opendaylight.controller.sal.flowprogrammer,
99               org.opendaylight.controller.sal.reader,
100               org.opendaylight.controller.sal.inventory,
101               org.opendaylight.controller.sal.match,
102               org.opendaylight.controller.sal.utils,
103               org.opendaylight.controller.sal.connection,
104               org.opendaylight.controller.clustering.services,
105               org.opendaylight.ovsdb.lib.error,
106               org.opendaylight.ovsdb.lib.notation,
107               org.opendaylight.ovsdb.lib.operations,
108               org.opendaylight.ovsdb.lib.message,
109               org.opendaylight.ovsdb.schema.openvswitch,
110               org.apache.commons.lang3.builder,
111               org.apache.commons.lang3.tuple,
112               org.apache.felix.dm,
113               org.slf4j,
114               org.eclipse.osgi.framework.console,
115               org.osgi.framework,
116               javax.net.ssl,
117               *
118             </Import-Package>
119             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
120             <Embed-Transitive>true</Embed-Transitive>
121             <Bundle-Activator>org.opendaylight.ovsdb.plugin.internal.Activator</Bundle-Activator>
122             <Private-Package>
123               org.opendaylight.ovsdb.plugin.impl,
124               org.opendaylight.ovsdb.plugin.internal
125             </Private-Package>
126             <Export-Package>
127               org.opendaylight.ovsdb.plugin,
128               org.opendaylight.ovsdb.plugin.api,
129               org.opendaylight.ovsdb.plugin.error
130             </Export-Package>
131           </instructions>
132           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
133         </configuration>
134       </plugin>
135       <plugin>
136         <groupId>org.apache.maven.plugins</groupId>
137         <artifactId>maven-checkstyle-plugin</artifactId>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-failsafe-plugin</artifactId>
142       </plugin>
143       <plugin>
144         <groupId>org.jacoco</groupId>
145         <artifactId>jacoco-maven-plugin</artifactId>
146       </plugin>
147     </plugins>
148   </build>
149   <scm>
150     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
151     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
152     <tag>HEAD</tag>
153     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
154   </scm>
155 </project>