Merge "Check for trunks (if not present, don't throw an NPE ;) )"
[ovsdb.git] / plugin / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>plugin</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>com.fasterxml.jackson.core</groupId>
28       <artifactId>jackson-databind</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>com.google.guava</groupId>
32       <artifactId>guava</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>commons-collections</groupId>
36       <artifactId>commons-collections</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>equinoxSDK381</groupId>
40       <artifactId>org.eclipse.osgi</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>io.netty</groupId>
44       <artifactId>netty-all</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>junit</groupId>
48       <artifactId>junit</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.apache.felix</groupId>
53       <artifactId>org.apache.felix.dependencymanager</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.ovsdb</groupId>
57       <artifactId>library</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.ovsdb</groupId>
61       <artifactId>schema.openvswitch</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.ovsdb</groupId>
65       <artifactId>utils.config</artifactId>
66       <version>${ovsdb.utils.config.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller.model</groupId>
70       <artifactId>model-inventory</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.slf4j</groupId>
74       <artifactId>slf4j-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.slf4j</groupId>
78       <artifactId>slf4j-simple</artifactId>
79     </dependency>
80   </dependencies>
81
82   <build>
83     <testResources>
84       <testResource>
85         <filtering>true</filtering>
86         <directory>src/test/resources</directory>
87       </testResource>
88     </testResources>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <version>2.4.0</version>
94         <extensions>true</extensions>
95         <configuration>
96           <instructions>
97             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
98             <Embed-Transitive>true</Embed-Transitive>
99             <Bundle-Activator>org.opendaylight.ovsdb.plugin.internal.Activator</Bundle-Activator>
100             <Private-Package>
101               org.opendaylight.ovsdb.plugin.impl,
102               org.opendaylight.ovsdb.plugin.internal
103             </Private-Package>
104             <Export-Package>
105               org.opendaylight.ovsdb.plugin,
106               org.opendaylight.ovsdb.plugin.api,
107               org.opendaylight.ovsdb.plugin.error
108             </Export-Package>
109           </instructions>
110           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
111         </configuration>
112       </plugin>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-checkstyle-plugin</artifactId>
116       </plugin>
117       <plugin>
118         <groupId>org.apache.maven.plugins</groupId>
119         <artifactId>maven-failsafe-plugin</artifactId>
120       </plugin>
121       <plugin>
122         <groupId>org.jacoco</groupId>
123         <artifactId>jacoco-maven-plugin</artifactId>
124       </plugin>
125     </plugins>
126   </build>
127   <scm>
128     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
129     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
130     <tag>HEAD</tag>
131     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
132   </scm>
133 </project>