UT - Adding Netvirt classifier GeniusProvider tests
[netvirt.git] / vpnservice / sfc / classifier / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016, 2017 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.netvirt</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.5.0-SNAPSHOT</version>
18     <relativePath>../../../commons/config-parent</relativePath>
19   </parent>
20
21   <artifactId>sfc.classifier-impl</artifactId>
22   <name>ODL :: netvirt :: ${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <properties>
26     <sfc.version>0.6.0-SNAPSHOT</sfc.version>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.genius</groupId>
32       <artifactId>mdsalutil-api</artifactId>
33       <version>${genius.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.genius</groupId>
37       <artifactId>interfacemanager-api</artifactId>
38       <version>${genius.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.infrautils</groupId>
42       <artifactId>inject</artifactId>
43       <version>${infrautils.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.mdsal.model</groupId>
47       <artifactId>ietf-topology</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.mdsal.model</groupId>
51       <artifactId>ietf-packet-fields</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.mdsal.model</groupId>
55       <artifactId>iana-if-type-2014-05-08</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}</groupId>
59       <artifactId>neutronvpn-api</artifactId>
60       <version>${project.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>sfc.classifier-api</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.openflowplugin</groupId>
69       <artifactId>openflowjava-extension-nicira</artifactId>
70       <version>${openflowplugin.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.openflowplugin</groupId>
74       <artifactId>openflowplugin-extension-nicira</artifactId>
75       <version>${openflowplugin.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.openflowplugin.model</groupId>
79       <artifactId>model-flow-base</artifactId>
80       <version>${openflowplugin.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.openflowplugin.model</groupId>
84       <artifactId>model-flow-service</artifactId>
85       <version>${openflowplugin.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.ovsdb</groupId>
89       <artifactId>southbound-api</artifactId>
90       <version>${ovsdb.version}</version>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.ovsdb</groupId>
94       <artifactId>southbound-impl</artifactId>
95       <version>${ovsdb.version}</version>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.sfc</groupId>
99       <artifactId>sfc-model</artifactId>
100       <version>${sfc.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.sfc</groupId>
104       <artifactId>sfc-provider</artifactId>
105       <version>${sfc.version}</version>
106     </dependency>
107
108     <!-- Dependencies with <scope>test -->
109     <dependency>
110       <groupId>org.opendaylight.yangtools</groupId>
111       <artifactId>testutils</artifactId>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>sal-binding-broker-impl</artifactId>
117       <type>test-jar</type>
118       <scope>test</scope>
119     </dependency>
120     <dependency>
121       <groupId>com.google.guava</groupId>
122       <artifactId>guava-testlib</artifactId>
123     </dependency>
124   </dependencies>
125
126   <build>
127     <plugins>
128       <plugin>
129         <groupId>org.apache.aries.blueprint</groupId>
130         <artifactId>blueprint-maven-plugin</artifactId>
131       </plugin>
132     </plugins>
133   </build>
134
135   <!--
136       Maven Site Configuration
137
138       The following configuration is necessary for maven-site-plugin to
139       correctly identify the correct deployment path for OpenDaylight Maven
140       sites.
141   -->
142   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
143
144   <distributionManagement>
145     <site>
146       <id>opendaylight-site</id>
147       <url>${nexus.site.url}/${project.artifactId}/</url>
148     </site>
149   </distributionManagement>
150 </project>