Move old netvirt files into openstack dir
[netvirt.git] / openstack / utils / mdsal-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>config-parent</artifactId>
9     <version>0.5.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.netvirt</groupId>
14   <artifactId>utils.mdsal-utils</artifactId>
15   <version>1.3.0-SNAPSHOT</version>
16   <packaging>bundle</packaging>
17
18   <developers>
19     <developer>
20       <name>Anil Vishnoi</name>
21       <email>vishnoianil@gmail.com</email>
22       <url>https://github.com/vishnoianil</url>
23     </developer>
24   </developers>
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
28     <tag>HEAD</tag>
29     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
30   </scm>
31
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-binding-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.mockito</groupId>
44       <artifactId>mockito-all</artifactId>
45       <scope>test</scope>
46     </dependency>
47   </dependencies>
48
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54         <extensions>true</extensions>
55         <configuration>
56           <instructions>
57             <Export-Package>
58               org.opendaylight.netvirt.utils.mdsal.utils
59             </Export-Package>
60           </instructions>
61         </configuration>
62       </plugin>
63     </plugins>
64   </build>
65
66   <!--
67       Maven Site Configuration
68
69       The following configuration is necessary for maven-site-plugin to
70       correctly identify the correct deployment path for OpenDaylight Maven
71       sites.
72   -->
73   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
74
75   <distributionManagement>
76     <site>
77       <id>opendaylight-site</id>
78       <url>${nexus.site.url}/${project.artifactId}/</url>
79     </site>
80   </distributionManagement>
81 </project>