DHCP relay update to DVR
[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.7.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.groupbasedpolicy</groupId>
19   <artifactId>neutron-mapper</artifactId>
20   <version>0.6.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
25
26   <properties>
27     <neutron.version>0.9.0-SNAPSHOT</neutron.version>
28   </properties>
29
30   <dependencies>
31     <!-- project specific dependencies -->
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>l2-l3-domain-extension</artifactId>
35       <version>${project.version}</version>
36       <type>bundle</type>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.neutron</groupId>
40       <artifactId>model</artifactId>
41       <version>${neutron.version}</version>
42     </dependency>
43     <!-- testing dependencies -->
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-core</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal-binding-broker-impl</artifactId>
57       <type>test-jar</type>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.mdsal.model</groupId>
62       <artifactId>ietf-yang-types-20130715</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.mdsal.model</groupId>
66       <artifactId>opendaylight-l2-types</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.mdsal.model</groupId>
70       <artifactId>ietf-topology</artifactId>
71     </dependency>
72   </dependencies>
73
74  <build>
75     <plugins>
76       <plugin>
77         <groupId>org.apache.felix</groupId>
78         <artifactId>maven-bundle-plugin</artifactId>
79         <configuration>
80           <instructions>
81             <Export-Package>
82               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.neutron.gbp.mapper.*,
83               org.opendaylight.groupbasedpolicy.neutron.gbp.util
84             </Export-Package>
85             <Import-Package>*</Import-Package>
86           </instructions>
87         </configuration>
88       </plugin>
89       <plugin>
90         <groupId>org.codehaus.mojo</groupId>
91         <artifactId>build-helper-maven-plugin</artifactId>
92         <executions>
93           <execution>
94             <id>attach-artifacts</id>
95             <phase>package</phase>
96             <goals>
97               <goal>attach-artifact</goal>
98             </goals>
99             <configuration>
100               <artifacts>
101                 <artifact>
102                   <file>${project.build.directory}/classes/startup.cfg</file>
103                   <type>cfg</type>
104                   <classifier>config</classifier>
105                 </artifact>
106               </artifacts>
107             </configuration>
108           </execution>
109         </executions>
110       </plugin>
111     </plugins>
112   </build>
113 </project>