BUG-7657: Karaf 4 migration: provide Karaf 4 groupbasedpolicy features
[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.7.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.groupbasedpolicy</groupId>
19   <artifactId>neutron-ovsdb</artifactId>
20   <version>0.6.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
25
26   <properties>
27     <ovsdb.version>1.5.0-SNAPSHOT</ovsdb.version>
28   </properties>
29
30   <dependencies>
31     <!-- project specific dependencies -->
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>groupbasedpolicy</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>ofoverlay-renderer</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>neutron-mapper</artifactId>
45       <version>${project.version}</version>
46     </dependency>
47     <!-- OVSDB dependencies -->
48     <dependency>
49       <groupId>org.opendaylight.ovsdb</groupId>
50       <artifactId>southbound-api</artifactId>
51       <version>${ovsdb.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.ovsdb</groupId>
55       <artifactId>southbound-impl</artifactId>
56       <version>${ovsdb.version}</version>
57     </dependency>
58     <!-- testing dependencies -->
59     <dependency>
60       <groupId>junit</groupId>
61       <artifactId>junit</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.mockito</groupId>
66       <artifactId>mockito-core</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>sal-binding-broker-impl</artifactId>
72       <type>test-jar</type>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.groupbasedpolicy</groupId>
77       <artifactId>groupbasedpolicy</artifactId>
78       <version>${project.version}</version>
79       <type>test-jar</type>
80       <scope>test</scope>
81     </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.felix</groupId>
88         <artifactId>maven-bundle-plugin</artifactId>
89         <configuration>
90           <instructions>
91             <Export-Package></Export-Package>
92             <Import-Package>*</Import-Package>
93           </instructions>
94         </configuration>
95       </plugin>
96     </plugins>
97   </build>
98 </project>