676929b85d2608e87688171146141693a526e97c
[netvirt.git] / 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
13     <parent>
14         <groupId>org.opendaylight.netvirt</groupId>
15         <artifactId>managed-tx-parent</artifactId>
16         <version>0.7.0-SNAPSHOT</version>
17         <relativePath>../../../commons/managed-tx-parent</relativePath>
18     </parent>
19
20     <artifactId>sfc.classifier-impl</artifactId>
21     <name>ODL :: netvirt :: ${project.artifactId}</name>
22     <packaging>bundle</packaging>
23     <modelVersion>4.0.0</modelVersion>
24
25     <properties>
26         <sfc.version>0.8.0-SNAPSHOT</sfc.version>
27     </properties>
28
29     <dependencies>
30         <dependency>
31             <groupId>org.opendaylight.genius</groupId>
32             <artifactId>interfacemanager-api</artifactId>
33             <version>${genius.version}</version>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.genius</groupId>
37             <artifactId>mdsalutil-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>iana-if-type-2014-05-08</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>ietf-topology</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>sfc.classifier-api</artifactId>
60             <version>${project.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>neutronvpn-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>org.opendaylight.controller</groupId>
122             <artifactId>sal-binding-broker-impl</artifactId>
123             <scope>test</scope>
124         </dependency>
125         <dependency>
126             <groupId>com.google.guava</groupId>
127             <artifactId>guava-testlib</artifactId>
128         </dependency>
129     </dependencies>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <groupId>org.apache.aries.blueprint</groupId>
135                 <artifactId>blueprint-maven-plugin</artifactId>
136             </plugin>
137             <plugin>
138                 <groupId>org.apache.felix</groupId>
139                 <artifactId>maven-bundle-plugin</artifactId>
140                 <extensions>true</extensions>
141                 <configuration>
142                     <instructions>
143                         <!-- We purposely don't export any packages to avoid any dependencies
144                              on this bundle and prevent @Singleton annotated classes from being
145                              accidently included in another bundle's blueprint XML  -->
146                         <Export-Package/>
147                     </instructions>
148                 </configuration>
149             </plugin>
150         </plugins>
151     </build>
152 </project>