Bug 7848: Allow neutron port create with security disabled.
[neutron.git] / neutron-hostconfig / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>config-parent</artifactId>
9     <version>0.6.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.neutron</groupId>
14   <artifactId>neutron-hostconfig</artifactId>
15   <version>0.8.0-SNAPSHOT</version>
16   <packaging>pom</packaging>
17   <modules>
18     <module>utils</module>
19     <module>ovs</module>
20   </modules>
21   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.maven.plugins</groupId>
26         <artifactId>maven-deploy-plugin</artifactId>
27         <configuration>
28           <skip>true</skip>
29         </configuration>
30       </plugin>
31       <plugin>
32         <groupId>org.apache.maven.plugins</groupId>
33         <artifactId>maven-install-plugin</artifactId>
34         <configuration>
35           <skip>true</skip>
36         </configuration>
37       </plugin>
38     </plugins>
39   </build>
40
41   <!--
42       Maven Site Configuration
43       The following configuration is necessary for maven-site-plugin to
44       correctly identify the correct deployment path for OpenDaylight Maven
45       sites.
46   -->
47   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
48
49   <distributionManagement>
50     <site>
51       <id>opendaylight-site</id>
52       <url>${nexus.site.url}/${project.artifactId}/</url>
53     </site>
54   </distributionManagement>
55 </project>
56