4b3b291ddbcca314a59dcfc97adae71d85b33471
[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>l2-l3-domain-extension</artifactId>
32       <version>${project.version}</version>
33       <type>bundle</type>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.neutron</groupId>
37       <artifactId>model</artifactId>
38       <version>${neutron.version}</version>
39     </dependency>
40     <!-- testing dependencies -->
41     <dependency>
42       <groupId>junit</groupId>
43       <artifactId>junit</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.mockito</groupId>
48       <artifactId>mockito-all</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal-binding-broker-impl</artifactId>
54       <type>test-jar</type>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.mdsal.model</groupId>
59       <artifactId>ietf-yang-types-20130715</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.mdsal.model</groupId>
63       <artifactId>opendaylight-l2-types</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.mdsal.model</groupId>
67       <artifactId>ietf-topology</artifactId>
68     </dependency>
69   </dependencies>
70
71  <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.felix</groupId>
75         <artifactId>maven-bundle-plugin</artifactId>
76         <configuration>
77           <instructions>
78             <Export-Package>
79               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.neutron.gbp.mapper.*,
80               org.opendaylight.groupbasedpolicy.neutron.gbp.util
81             </Export-Package>
82             <Import-Package>*</Import-Package>
83           </instructions>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88 </project>