Merge "Tests for neutron-ovsdb"
[groupbasedpolicy.git] / neutron-ovsdb / pom.xml
1 <?xml version="1.0"?>
2 <!-- Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved.
3   This program and the accompanying materials are made available under the
4   terms of the Eclipse Public License v1.0 which accompanies this distribution,
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
8   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.5.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.groupbasedpolicy</groupId>
19   <artifactId>neutron-ovsdb</artifactId>
20   <version>0.4.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   
23   <properties>
24     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
25   </properties>
26
27   <dependencies>
28     <!-- project specific dependencies -->
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>groupbasedpolicy</artifactId>
32       <version>${project.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>ofoverlay-renderer</artifactId>
37       <version>${project.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>neutron-mapper</artifactId>
42       <version>${project.version}</version>
43     </dependency>
44     <!-- OVSDB dependencies -->
45     <dependency>
46       <groupId>org.opendaylight.ovsdb</groupId>
47       <artifactId>southbound-api</artifactId>
48       <version>${ovsdb.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.ovsdb</groupId>
52       <artifactId>southbound-impl</artifactId>
53       <version>${ovsdb.version}</version>
54     </dependency>
55     <!-- testing dependencies -->
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.mockito</groupId>
63       <artifactId>mockito-all</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-binding-broker-impl</artifactId>
69       <type>test-jar</type>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.groupbasedpolicy</groupId>
74       <artifactId>groupbasedpolicy</artifactId>
75       <version>${project.version}</version>
76       <type>test-jar</type>
77       <scope>test</scope>
78     </dependency>
79   </dependencies>
80
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.felix</groupId>
85         <artifactId>maven-bundle-plugin</artifactId>
86         <configuration>
87           <instructions>
88             <Export-Package></Export-Package>
89             <Import-Package>*</Import-Package>
90           </instructions>
91         </configuration>
92       </plugin>
93     </plugins>
94   </build>
95 </project>