Added isPortSecurityEnabled check to enable/disable SG.
[netvirt.git] / openstack / net-virt / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 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   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.5.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>openstack.net-virt</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
26   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <neutron.model.version>0.7.0-SNAPSHOT</neutron.model.version>
49     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
50     <sonar.jacoco.itReportPath>../net-virt-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
51   </properties>
52
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.ovsdb</groupId>
56       <artifactId>southbound-api</artifactId>
57       <version>${ovsdb.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>utils.config</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>utils.servicehelper</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>utils.mdsal-utils</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>${project.groupId}</groupId>
76       <artifactId>utils.neutron-utils</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.neutron</groupId>
81       <artifactId>model</artifactId>
82       <version>${neutron.model.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.mdsal.model</groupId>
86       <artifactId>ietf-inet-types</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.mdsal.model</groupId>
90       <artifactId>ietf-topology</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.mdsal.model</groupId>
94       <artifactId>opendaylight-l2-types</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.mdsal.model</groupId>
98       <artifactId>ietf-yang-types-20130715</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.mdsal.model</groupId>
102       <artifactId>ietf-yang-types</artifactId>
103     </dependency>
104    <dependency>
105       <groupId>commons-net</groupId>
106       <artifactId>commons-net</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.codehaus.sonar-plugins.java</groupId>
110       <artifactId>sonar-jacoco-listeners</artifactId>
111       <version>${sonar-jacoco-listeners.version}</version>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.slf4j</groupId>
116       <artifactId>slf4j-simple</artifactId>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.mockito</groupId>
121       <artifactId>mockito-core</artifactId>
122       <version>1.10.19</version>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.powermock</groupId>
127       <artifactId>powermock-core</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.powermock</groupId>
132       <artifactId>powermock-module-junit4</artifactId>
133       <scope>test</scope>
134     </dependency>
135     <dependency>
136       <groupId>org.powermock</groupId>
137       <artifactId>powermock-api-mockito</artifactId>
138       <scope>test</scope>
139     </dependency>
140     <dependency>
141       <groupId>org.powermock</groupId>
142       <artifactId>powermock-api-support</artifactId>
143       <scope>test</scope>
144     </dependency>
145     <dependency>
146       <groupId>org.powermock</groupId>
147       <artifactId>powermock-reflect</artifactId>
148       <scope>test</scope>
149     </dependency>
150     <dependency>
151       <groupId>junit</groupId>
152       <artifactId>junit</artifactId>
153       <scope>test</scope>
154     </dependency>
155     <dependency>
156       <groupId>org.opendaylight.controller</groupId>
157       <artifactId>sal-binding-broker-impl</artifactId>
158       <type>test-jar</type>
159       <scope>test</scope>
160     </dependency>
161   </dependencies>
162   <build>
163     <plugins>
164       <plugin>
165         <groupId>org.apache.felix</groupId>
166         <artifactId>maven-bundle-plugin</artifactId>
167         <extensions>true</extensions>
168         <configuration>
169           <instructions>
170             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
171             <Embed-Transitive>true</Embed-Transitive>
172             <Export-Package>
173               org.opendaylight.netvirt.openstack.netvirt.translator,
174               org.opendaylight.netvirt.openstack.netvirt.api,
175               org.opendaylight.netvirt.openstack.netvirt
176             </Export-Package>
177           </instructions>
178         </configuration>
179       </plugin>
180       <plugin>
181         <groupId>org.apache.maven.plugins</groupId>
182         <artifactId>maven-surefire-plugin</artifactId>
183         <configuration>
184           <properties>
185             <property>
186               <name>listener</name>
187               <value>org.sonar.java.jacoco.JUnitListener</value>
188             </property>
189           </properties>
190         </configuration>
191       </plugin>
192       <plugin>
193         <groupId>org.jacoco</groupId>
194         <artifactId>jacoco-maven-plugin</artifactId>
195         <executions>
196           <execution>
197             <id>default-instrument</id>
198             <goals>
199               <goal>instrument</goal>
200             </goals>
201           </execution>
202           <execution>
203             <id>default-restore-instrumented-classes</id>
204             <goals>
205               <goal>restore-instrumented-classes</goal>
206             </goals>
207           </execution>
208         </executions>
209       </plugin>
210     </plugins>
211   </build>
212 </project>