Merge "Revert "Added cluster aware mdsal utils class to net-virt.""
[netvirt.git] / openstack / net-virt-sfc / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2015 Red Hat, Inc. and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.4.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <modelVersion>4.0.0</modelVersion>
22   <groupId>org.opendaylight.ovsdb</groupId>
23   <artifactId>openstack.net-virt-sfc-impl</artifactId>
24   <version>1.2.1-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <properties>
28     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
29     <powermock.version>1.6.4</powermock.version>
30     <sfc.version>0.2.0-SNAPSHOT</sfc.version>
31     <sonar.jacoco.itReportPath>../it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
32   </properties>
33
34   <dependencies>
35     <!-- project specific dependencies -->
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>openstack.net-virt-sfc-api</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>openstack.net-virt</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>openstack.net-virt-providers</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>southbound-api</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>southbound-impl</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>utils.mdsal-utils</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>utils.mdsal-openflow</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>utils.servicehelper</artifactId>
74       <version>${project.version}</version>
75     </dependency>
76     <!-- openflowplugin dependencies -->
77     <dependency>
78       <groupId>org.opendaylight.openflowplugin</groupId>
79       <artifactId>openflowplugin-extension-nicira</artifactId>
80       <version>${openflowplugin.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.openflowplugin</groupId>
84       <artifactId>openflowjava-extension-nicira</artifactId>
85       <version>${openflowplugin.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.openflowplugin.model</groupId>
89       <artifactId>model-flow-base</artifactId>
90       <version>${openflowplugin.version}</version>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.openflowplugin.model</groupId>
94       <artifactId>model-flow-service</artifactId>
95       <version>${openflowplugin.version}</version>
96     </dependency>
97     <!-- mdsal dependencies -->
98     <dependency>
99       <groupId>org.opendaylight.mdsal.model</groupId>
100       <artifactId>ietf-topology</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.mdsal.model</groupId>
104       <artifactId>iana-if-type-2014-05-08</artifactId>
105     </dependency>
106     <!-- sfc dependencies -->
107     <dependency>
108       <groupId>org.opendaylight.sfc</groupId>
109       <artifactId>sfc-model</artifactId>
110       <version>${sfc.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.sfc</groupId>
114       <artifactId>sfc-provider</artifactId>
115       <version>${sfc.version}</version>
116     </dependency>
117     <!-- external dependencies -->
118     <dependency>
119       <groupId>org.codehaus.sonar-plugins.java</groupId>
120       <artifactId>sonar-jacoco-listeners</artifactId>
121       <version>${sonar-jacoco-listeners.version}</version>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.slf4j</groupId>
126       <artifactId>slf4j-simple</artifactId>
127       <scope>test</scope>
128     </dependency>
129     <!-- testing dependencies -->
130     <dependency>
131       <groupId>junit</groupId>
132       <artifactId>junit</artifactId>
133       <scope>test</scope>
134     </dependency>
135     <dependency>
136       <groupId>org.mockito</groupId>
137       <artifactId>mockito-all</artifactId>
138       <version>1.10.19</version>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>org.powermock</groupId>
143       <artifactId>powermock-core</artifactId>
144       <version>${powermock.version}</version>
145       <scope>test</scope>
146     </dependency>
147     <dependency>
148       <groupId>org.powermock</groupId>
149       <artifactId>powermock-module-junit4</artifactId>
150       <version>${powermock.version}</version>
151       <scope>test</scope>
152     </dependency>
153     <dependency>
154       <groupId>org.powermock</groupId>
155       <artifactId>powermock-api-mockito</artifactId>
156       <version>${powermock.version}</version>
157       <scope>test</scope>
158     </dependency>
159   </dependencies>
160
161   <build>
162     <plugins>
163       <plugin>
164         <groupId>org.apache.felix</groupId>
165         <artifactId>maven-bundle-plugin</artifactId>
166         <extensions>true</extensions>
167         <configuration>
168           <instructions>
169             <Embed-Dependency>utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
170             <Embed-Transitive>true</Embed-Transitive>
171             <Export-Package>
172               org.opendaylight.ovsdb.openstack.netvirt.sfc
173             </Export-Package>
174           </instructions>
175         </configuration>
176       </plugin>
177       <plugin>
178         <groupId>org.apache.maven.plugins</groupId>
179         <artifactId>maven-surefire-plugin</artifactId>
180         <configuration>
181           <properties>
182             <property>
183               <name>listener</name>
184               <value>org.sonar.java.jacoco.JUnitListener</value>
185             </property>
186           </properties>
187         </configuration>
188       </plugin>
189       <plugin>
190         <groupId>org.jacoco</groupId>
191         <artifactId>jacoco-maven-plugin</artifactId>
192         <executions>
193           <execution>
194             <id>default-instrument</id>
195             <goals>
196               <goal>instrument</goal>
197             </goals>
198           </execution>
199           <execution>
200             <id>default-restore-instrumented-classes</id>
201             <goals>
202               <goal>restore-instrumented-classes</goal>
203             </goals>
204           </execution>
205         </executions>
206       </plugin>
207     </plugins>
208   </build>
209 </project>