NeLocationProvider
[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.4.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>ne-location-provider</artifactId>
18   <packaging>bundle</packaging>
19
20   <dependencies>
21     <!-- testing dependencies -->
22     <dependency>
23       <groupId>junit</groupId>
24       <artifactId>junit</artifactId>
25       <scope>test</scope>
26     </dependency>
27     <dependency>
28       <groupId>org.mockito</groupId>
29       <artifactId>mockito-all</artifactId>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.groupbasedpolicy</groupId>
34       <artifactId>groupbasedpolicy</artifactId>
35       <version>${project.version}</version>
36       <type>test-jar</type>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-binding-broker-impl</artifactId>
42       <type>test-jar</type>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46         <groupId>org.opendaylight.controller.model</groupId>
47         <artifactId>model-inventory</artifactId>
48         <scope>test</scope>
49     </dependency>
50   </dependencies>
51
52   <!-- project build -->
53   <build>
54     <!-- We use the maven-resources-plugin to copy a class from the groupbasepolicy
55       bundle that we need in order to run some unit tests in the renderer (classes
56       in the test directory aren't packaged in bundles, and instead of keeping
57       separate copies, we just copy the file(s) needed in order to run the test). -->
58     <plugins>
59       <plugin>
60         <groupId>org.apache.felix</groupId>
61         <artifactId>maven-bundle-plugin</artifactId>
62         <extensions>true</extensions>
63         <configuration>
64           <instructions>
65             <Export-Package>
66               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.ne.location.provider.rev160421.*
67             </Export-Package>
68           </instructions>
69         </configuration>
70       </plugin>
71     </plugins>
72   </build>
73 </project>