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.8.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>ne-location-provider</artifactId>
18   <packaging>bundle</packaging>
19   <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
22
23   <dependencies>
24     <dependency>
25       <groupId>org.opendaylight.groupbasedpolicy</groupId>
26       <artifactId>l2-l3-domain-extension</artifactId>
27       <version>${project.version}</version>
28     </dependency>
29     <!-- testing dependencies -->
30     <dependency>
31       <groupId>junit</groupId>
32       <artifactId>junit</artifactId>
33       <scope>test</scope>
34     </dependency>
35     <dependency>
36       <groupId>org.mockito</groupId>
37       <artifactId>mockito-core</artifactId>
38       <scope>test</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.groupbasedpolicy</groupId>
42       <artifactId>groupbasedpolicy</artifactId>
43       <version>${project.version}</version>
44       <type>test-jar</type>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>sal-binding-broker-impl</artifactId>
50       <type>test-jar</type>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54         <groupId>org.opendaylight.controller.model</groupId>
55         <artifactId>model-inventory</artifactId>
56         <scope>test</scope>
57     </dependency>
58   </dependencies>
59
60   <!-- project build -->
61   <build>
62     <!-- We use the maven-resources-plugin to copy a class from the groupbasepolicy
63       bundle that we need in order to run some unit tests in the renderer (classes
64       in the test directory aren't packaged in bundles, and instead of keeping
65       separate copies, we just copy the file(s) needed in order to run the test). -->
66     <plugins>
67       <plugin>
68         <groupId>org.apache.felix</groupId>
69         <artifactId>maven-bundle-plugin</artifactId>
70         <extensions>true</extensions>
71         <configuration>
72           <instructions>
73             <Export-Package>
74               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.ne.location.provider.rev160421.*
75             </Export-Package>
76           </instructions>
77         </configuration>
78       </plugin>
79     </plugins>
80   </build>
81 </project>