Merge "Bug 5117 - DOS chars in shell script"
[groupbasedpolicy.git] / neutron-mapper / 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-mapper</artifactId>
20   <version>0.4.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <properties>
24     <neutron.version>0.7.0-SNAPSHOT</neutron.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>org.opendaylight.neutron</groupId>
36       <artifactId>neutron-spi</artifactId>
37       <version>${neutron.version}</version>
38     </dependency>
39     <!-- testing dependencies -->
40     <dependency>
41       <groupId>junit</groupId>
42       <artifactId>junit</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.mockito</groupId>
47       <artifactId>mockito-all</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-binding-broker-impl</artifactId>
53       <type>test-jar</type>
54       <scope>test</scope>
55     </dependency>
56   </dependencies>
57
58  <build>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.felix</groupId>
62         <artifactId>maven-bundle-plugin</artifactId>
63         <configuration>
64           <instructions>
65             <Export-Package>
66               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.neutron.gbp.mapper.*,
67               org.opendaylight.groupbasedpolicy.neutron.gbp.util
68             </Export-Package>
69             <Import-Package>*</Import-Package>
70           </instructions>
71         </configuration>
72       </plugin>
73     </plugins>
74   </build>
75 </project>