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