Merge "All TCP & UDP SG Rules : Implementation and Unit tests added."
[netvirt.git] / openstack / net-virt-sfc / features / production / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 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 INTERNAL
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   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.6.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>openstack.net-virt-sfc-features</artifactId>
20   <version>1.2.1-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <modelVersion>4.0.0</modelVersion>
23   <prerequisites>
24     <maven>3.1.1</maven>
25   </prerequisites>
26   <properties>
27     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
28     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
29     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
30     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
31     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
32     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
33   </properties>
34   <dependencyManagement>
35     <dependencies>
36       <!-- project specific dependencies -->
37       <dependency>
38         <groupId>org.opendaylight.controller</groupId>
39         <artifactId>mdsal-artifacts</artifactId>
40         <version>${mdsal.version}</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44       <dependency>
45         <groupId>org.opendaylight.netconf</groupId>
46         <artifactId>restconf-artifacts</artifactId>
47         <version>${restconf.version}</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51     </dependencies>
52   </dependencyManagement>
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.yangtools</groupId>
56       <artifactId>features-yangtools</artifactId>
57       <classifier>features</classifier>
58       <version>${yangtools.version}</version>
59       <type>xml</type>
60       <scope>runtime</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.mdsal.model</groupId>
64       <artifactId>features-mdsal-model</artifactId>
65       <version>${mdsal.model.version}</version>
66       <classifier>features</classifier>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>features-mdsal</artifactId>
73       <classifier>features</classifier>
74       <version>${mdsal.version}</version>
75       <type>xml</type>
76       <scope>runtime</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.netconf</groupId>
80       <artifactId>features-restconf</artifactId>
81       <classifier>features</classifier>
82       <version>${restconf.version}</version>
83       <type>xml</type>
84       <scope>runtime</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.dlux</groupId>
88       <artifactId>features-dlux</artifactId>
89       <classifier>features</classifier>
90       <version>${dlux.version}</version>
91       <type>xml</type>
92       <scope>runtime</scope>
93     </dependency>
94     <dependency>
95       <groupId>${project.groupId}</groupId>
96       <artifactId>openstack.net-virt-sfc-impl</artifactId>
97       <version>${project.version}</version>
98     </dependency>
99     <dependency>
100       <groupId>${project.groupId}</groupId>
101       <artifactId>openstack.net-virt-sfc-impl</artifactId>
102       <version>${project.version}</version>
103       <type>xml</type>
104       <classifier>config</classifier>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>openstack.net-virt-sfc-api</artifactId>
109       <version>${project.version}</version>
110     </dependency>
111     <dependency>
112       <groupId>${project.groupId}</groupId>
113       <artifactId>southbound-features</artifactId>
114       <version>${project.version}</version>
115       <type>xml</type>
116       <classifier>features</classifier>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>utils.mdsal-utils</artifactId>
121       <version>${project.version}</version>
122     </dependency>
123   </dependencies>
124 </project>