Release Sodium
[netvirt.git] / sfc / translator / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11 <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.netvirt</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.9.1</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <artifactId>sfc.translator</artifactId>
21   <name>ODL :: netvirt :: ${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <properties>
25     <sfc.version>0.10.1</sfc.version>
26   </properties>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.infrautils</groupId>
31       <artifactId>inject</artifactId>
32       <version>${infrautils.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.mdsal.model</groupId>
36       <artifactId>ietf-access-control-list</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>sfc.classifier-api</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.neutron</groupId>
45       <artifactId>model</artifactId>
46       <version>${neutron.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.sfc</groupId>
50       <artifactId>sfc-model</artifactId>
51       <version>${sfc.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.sfc</groupId>
55       <artifactId>sfc-provider</artifactId>
56       <version>${sfc.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.genius</groupId>
60       <artifactId>mdsalutil-api</artifactId>
61       <version>${genius.version}</version>
62     </dependency>
63   </dependencies>
64
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.aries.blueprint</groupId>
69         <artifactId>blueprint-maven-plugin</artifactId>
70       </plugin>
71     </plugins>
72   </build>
73
74 </project>