Enable NetVirt Maven site
[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>utils.neutron-utils</artifactId>
50           <version>${project.version}</version>
51       </dependency>
52       <dependency>
53         <groupId>org.opendaylight.ovsdb</groupId>
54         <artifactId>utils.mdsal-utils</artifactId>
55         <version>${ovsdb.version}</version>
56       </dependency>
57       <dependency>
58           <groupId>org.opendaylight.ovsdb</groupId>
59           <artifactId>southbound-api</artifactId>
60           <version>${ovsdb.version}</version>
61       </dependency>
62       <dependency>
63           <groupId>org.opendaylight.ovsdb</groupId>
64           <artifactId>utils.southbound-utils</artifactId>
65           <version>${project.version}</version>
66       </dependency>
67       <dependency>
68           <groupId>org.opendaylight.netvirt</groupId>
69           <artifactId>utils.mdsal-openflow</artifactId>
70           <version>${project.version}</version>
71       </dependency>
72       <dependency>
73           <groupId>org.opendaylight.mdsal.model</groupId>
74           <artifactId>ietf-inet-types</artifactId>
75       </dependency>
76       <dependency>
77           <groupId>org.opendaylight.mdsal.model</groupId>
78           <artifactId>ietf-topology</artifactId>
79       </dependency>
80       <dependency>
81           <groupId>junit</groupId>
82           <artifactId>junit</artifactId>
83           <scope>compile</scope>
84       </dependency>
85   </dependencies>
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.felix</groupId>
90         <artifactId>maven-bundle-plugin</artifactId>
91         <extensions>true</extensions>
92         <configuration>
93           <instructions>
94             <Embed-Dependency>
95               utils.mdsal-openflow;groupId=org.opendaylight.netvirt;type=!pom;inline=false
96             </Embed-Dependency>
97             <Embed-Transitive>true</Embed-Transitive>
98             <Export-Package>
99               org.opendaylight.netvirt.utils.netvirt.it.utils
100             </Export-Package>
101           </instructions>
102         </configuration>
103       </plugin>
104     </plugins>
105   </build>
106
107     <!--
108         Maven Site Configuration
109
110         The following configuration is necessary for maven-site-plugin to
111         correctly identify the correct deployment path for OpenDaylight Maven
112         sites.
113     -->
114     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
115
116     <distributionManagement>
117         <site>
118             <id>opendaylight-site</id>
119             <url>${nexus.site.url}/${project.artifactId}/</url>
120         </site>
121     </distributionManagement>
122 </project>