Add project info to name in pom files
[netvirt.git] / vpnservice / ipv6service / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: --><!--
3 Copyright (c) 2016 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.netvirt</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <artifactId>ipv6service-impl</artifactId>
20   <name>ODL :: netvirt :: ${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>ipv6service-api</artifactId>
27       <version>${project.version}</version>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.openflowplugin.model</groupId>
31       <artifactId>model-flow-service</artifactId>
32       <version>${openflowplugin.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.neutron</groupId>
36       <artifactId>model</artifactId>
37       <version>${neutron.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-binding-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <artifactId>yang-common</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.ovsdb</groupId>
49       <artifactId>southbound-api</artifactId>
50       <version>${vpns.ovsdb.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.openflowplugin</groupId>
54       <artifactId>openflowplugin-api</artifactId>
55       <version>${openflowplugin.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.genius</groupId>
59       <artifactId>mdsalutil-api</artifactId>
60       <version>${genius.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>neutronvpn-api</artifactId>
65       <version>${vpnservices.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.genius</groupId>
69       <artifactId>interfacemanager-api</artifactId>
70       <version>${genius.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>org.powermock</groupId>
74       <artifactId>powermock-api-mockito</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.powermock</groupId>
78       <artifactId>powermock-module-junit4</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.slf4j</groupId>
82       <artifactId>slf4j-simple</artifactId>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.netvirt</groupId>
87       <artifactId>elanmanager-api</artifactId>
88       <version>${vpnservices.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.netvirt</groupId>
92       <artifactId>elanmanager-impl</artifactId>
93       <version>${vpnservices.version}</version>
94     </dependency>
95   </dependencies>
96 </project>