Add Vhost User implementation for VPP
[groupbasedpolicy.git] / renderers / vpp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9
10   <parent>
11     <groupId>org.opendaylight.groupbasedpolicy</groupId>
12     <artifactId>groupbasedpolicy-renderers</artifactId>
13     <version>0.4.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>vpp-renderer</artifactId>
18   <packaging>bundle</packaging>
19
20   <properties></properties>
21
22   <dependencies>
23     <!-- project specific dependencies -->
24     <dependency>
25       <groupId>org.opendaylight.mdsal.model</groupId>
26       <artifactId>ietf-yang-types-20130715</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal.model</groupId>
30       <artifactId>ietf-inet-types-2013-07-15</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.mdsal.model</groupId>
34       <artifactId>yang-ext</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.mdsal.model</groupId>
38       <artifactId>iana-if-type-2014-05-08</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal.model</groupId>
42       <artifactId>ietf-interfaces</artifactId>
43     </dependency>
44
45     <!-- testing dependencies -->
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-binding-broker-impl</artifactId>
49       <type>test-jar</type>
50       <scope>test</scope>
51     </dependency>
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-all</artifactId>
60       <scope>test</scope>
61     </dependency>
62   </dependencies>
63
64   <!-- project build -->
65   <build>
66     <!-- We use the maven-resources-plugin to copy a class from the groupbasepolicy
67       bundle that we need in order to run some unit tests in the renderer (classes
68       in the test directory aren't packaged in bundles, and instead of keeping
69       separate copies, we just copy the file(s) needed in order to run the test). -->
70     <plugins>
71       <plugin>
72         <groupId>org.apache.felix</groupId>
73         <artifactId>maven-bundle-plugin</artifactId>
74         <extensions>true</extensions>
75         <configuration>
76           <instructions>
77             <Export-Package>
78               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.vpp_renderer.rev160425.*
79             </Export-Package>
80           </instructions>
81         </configuration>
82       </plugin>
83     </plugins>
84   </build>
85 </project>