e158166e4dcbb8f6e9c2f2833e6fa573c553661a
[groupbasedpolicy.git] / neutron-vpp-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.6.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.groupbasedpolicy</groupId>
19   <artifactId>neutron-vpp-mapper</artifactId>
20   <version>0.5.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <properties>
24     <neutron.version>0.8.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>${project.groupId}</groupId>
36       <artifactId>neutron-mapper</artifactId>
37       <version>${project.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.groupbasedpolicy</groupId>
41       <artifactId>vpp-renderer</artifactId>
42       <version>${project.version}</version>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal.model</groupId>
46       <artifactId>ietf-topology</artifactId>
47     </dependency>
48     <!-- testing dependencies -->
49     <dependency>
50       <groupId>junit</groupId>
51       <artifactId>junit</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.mockito</groupId>
56       <artifactId>mockito-core</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal-binding-broker-impl</artifactId>
62       <type>test-jar</type>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.mdsal.model</groupId>
67       <artifactId>ietf-yang-types-20130715</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             </Export-Package> -->
80             <Import-Package>*</Import-Package>
81           </instructions>
82         </configuration>
83       </plugin>
84       <plugin>
85         <groupId>org.codehaus.mojo</groupId>
86         <artifactId>build-helper-maven-plugin</artifactId>
87         <executions>
88           <execution>
89             <id>attach-artifacts</id>
90             <phase>package</phase>
91             <goals>
92               <goal>attach-artifact</goal>
93             </goals>
94             <configuration>
95               <artifacts>
96                 <artifact>
97                   <file>${project.build.directory}/classes/startup.cfg</file>
98                   <type>cfg</type>
99                   <classifier>config</classifier>
100                 </artifact>
101               </artifacts>
102             </configuration>
103           </execution>
104         </executions>
105       </plugin>
106     </plugins>
107   </build>
108 </project>