Bump versions by x.(y+1).z for next dev cycle
[groupbasedpolicy.git] / location-providers / ne-location-provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9
10   <parent>
11     <groupId>org.opendaylight.groupbasedpolicy</groupId>
12     <artifactId>groupbasedpolicy-location-providers</artifactId>
13     <version>0.6.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>ne-location-provider</artifactId>
18   <packaging>bundle</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.groupbasedpolicy</groupId>
23       <artifactId>l2-l3-domain-extension</artifactId>
24       <version>${project.version}</version>
25     </dependency>
26     <!-- testing dependencies -->
27     <dependency>
28       <groupId>junit</groupId>
29       <artifactId>junit</artifactId>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.mockito</groupId>
34       <artifactId>mockito-core</artifactId>
35       <scope>test</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.groupbasedpolicy</groupId>
39       <artifactId>groupbasedpolicy</artifactId>
40       <version>${project.version}</version>
41       <type>test-jar</type>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>sal-binding-broker-impl</artifactId>
47       <type>test-jar</type>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51         <groupId>org.opendaylight.controller.model</groupId>
52         <artifactId>model-inventory</artifactId>
53         <scope>test</scope>
54     </dependency>
55   </dependencies>
56
57   <!-- project build -->
58   <build>
59     <!-- We use the maven-resources-plugin to copy a class from the groupbasepolicy
60       bundle that we need in order to run some unit tests in the renderer (classes
61       in the test directory aren't packaged in bundles, and instead of keeping
62       separate copies, we just copy the file(s) needed in order to run the test). -->
63     <plugins>
64       <plugin>
65         <groupId>org.apache.felix</groupId>
66         <artifactId>maven-bundle-plugin</artifactId>
67         <extensions>true</extensions>
68         <configuration>
69           <instructions>
70             <Export-Package>
71               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.ne.location.provider.rev160421.*
72             </Export-Package>
73           </instructions>
74         </configuration>
75       </plugin>
76     </plugins>
77   </build>
78 </project>