translator: remove dependency of neutron.spi
[netvirt.git] / utils / netvirt-it-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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"
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.controller</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.5.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <modelVersion>4.0.0</modelVersion>
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>utils.netvirt-it-utils</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25
26   <scm>
27     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
28     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
29     <tag>HEAD</tag>
30     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
31   </scm>
32
33   <properties>
34     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
35   </properties>
36
37   <dependencies>
38       <dependency>
39           <groupId>org.opendaylight.controller</groupId>
40           <artifactId>sal-binding-api</artifactId>
41       </dependency>
42       <dependency>
43           <groupId>${project.groupId}</groupId>
44           <artifactId>utils.mdsal-utils</artifactId>
45           <version>${project.version}</version>
46       </dependency>
47       <dependency>
48         <groupId>${project.groupId}</groupId>
49         <artifactId>openstack.net-virt</artifactId>
50         <version>${project.version}</version>
51       </dependency>
52       <dependency>
53           <groupId>${project.groupId}</groupId>
54           <artifactId>utils.neutron-utils</artifactId>
55           <version>${project.version}</version>
56       </dependency>
57       <dependency>
58         <groupId>org.opendaylight.ovsdb</groupId>
59         <artifactId>utils.mdsal-utils</artifactId>
60         <version>${ovsdb.version}</version>
61       </dependency>
62       <dependency>
63           <groupId>org.opendaylight.ovsdb</groupId>
64           <artifactId>southbound-api</artifactId>
65           <version>${ovsdb.version}</version>
66       </dependency>
67       <dependency>
68           <groupId>org.opendaylight.ovsdb</groupId>
69           <artifactId>utils.southbound-utils</artifactId>
70           <version>${project.version}</version>
71       </dependency>
72       <dependency>
73           <groupId>org.opendaylight.netvirt</groupId>
74           <artifactId>utils.mdsal-openflow</artifactId>
75           <version>${project.version}</version>
76       </dependency>
77       <dependency>
78           <groupId>org.opendaylight.mdsal.model</groupId>
79           <artifactId>ietf-inet-types</artifactId>
80       </dependency>
81       <dependency>
82           <groupId>org.opendaylight.mdsal.model</groupId>
83           <artifactId>ietf-topology</artifactId>
84       </dependency>
85       <dependency>
86           <groupId>junit</groupId>
87           <artifactId>junit</artifactId>
88           <scope>compile</scope>
89       </dependency>
90   </dependencies>
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.felix</groupId>
95         <artifactId>maven-bundle-plugin</artifactId>
96         <extensions>true</extensions>
97         <configuration>
98           <instructions>
99             <Embed-Dependency>
100               utils.mdsal-openflow;groupId=org.opendaylight.netvirt;type=!pom;inline=false
101             </Embed-Dependency>
102             <Embed-Transitive>true</Embed-Transitive>
103             <Export-Package>
104               org.opendaylight.netvirt.utils.netvirt.it.utils
105             </Export-Package>
106           </instructions>
107         </configuration>
108       </plugin>
109     </plugins>
110   </build>
111
112     <!--
113         Maven Site Configuration
114
115         The following configuration is necessary for maven-site-plugin to
116         correctly identify the correct deployment path for OpenDaylight Maven
117         sites.
118     -->
119     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
120
121     <distributionManagement>
122         <site>
123             <id>opendaylight-site</id>
124             <url>${nexus.site.url}/${project.artifactId}/</url>
125         </site>
126     </distributionManagement>
127 </project>