Bump versions by 0.1.0 for next dev cycle
[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, 2016 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.6.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <modelVersion>4.0.0</modelVersion>
22   <groupId>org.opendaylight.netvirt</groupId>
23   <artifactId>openstack.net-virt-sfc-impl</artifactId>
24   <version>1.4.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <properties>
28     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
29     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
30     <sfc.version>0.4.0-SNAPSHOT</sfc.version>
31     <sonar.jacoco.itReportPath>../it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
32   </properties>
33
34   <dependencies>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>openstack.net-virt</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>openstack.net-virt-providers</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.ovsdb</groupId>
47       <artifactId>southbound-api</artifactId>
48       <version>${ovsdb.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.ovsdb</groupId>
52       <artifactId>southbound-impl</artifactId>
53       <version>${ovsdb.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>utils.mdsal-utils</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>utils.mdsal-openflow</artifactId>
63       <version>${project.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>utils.servicehelper</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.openflowplugin</groupId>
72       <artifactId>openflowplugin-extension-nicira</artifactId>
73       <version>${openflowplugin.version}</version>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.openflowplugin</groupId>
77       <artifactId>openflowjava-extension-nicira</artifactId>
78       <version>${openflowplugin.version}</version>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.openflowplugin.model</groupId>
82       <artifactId>model-flow-base</artifactId>
83       <version>${openflowplugin.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.openflowplugin.model</groupId>
87       <artifactId>model-flow-service</artifactId>
88       <version>${openflowplugin.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.mdsal.model</groupId>
92       <artifactId>ietf-topology</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.mdsal.model</groupId>
96       <artifactId>ietf-packet-fields</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.mdsal.model</groupId>
100       <artifactId>iana-if-type-2014-05-08</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.sfc</groupId>
104       <artifactId>sfc-model</artifactId>
105       <version>${sfc.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.sfc</groupId>
109       <artifactId>sfc-provider</artifactId>
110       <version>${sfc.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>org.codehaus.sonar-plugins.java</groupId>
114       <artifactId>sonar-jacoco-listeners</artifactId>
115       <version>${sonar-jacoco-listeners.version}</version>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.slf4j</groupId>
120       <artifactId>slf4j-simple</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>junit</groupId>
125       <artifactId>junit</artifactId>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.mockito</groupId>
130       <artifactId>mockito-all</artifactId>
131       <scope>test</scope>
132     </dependency>
133     <dependency>
134       <groupId>${project.groupId}</groupId>
135       <artifactId>openstack.net-virt-sfc-api</artifactId>
136       <version>${project.version}</version>
137     </dependency>
138   </dependencies>
139
140   <build>
141     <plugins>
142       <plugin>
143         <groupId>org.apache.felix</groupId>
144         <artifactId>maven-bundle-plugin</artifactId>
145         <extensions>true</extensions>
146         <configuration>
147           <instructions>
148             <Embed-Dependency>utils.mdsal-openflow;type=!pom;inline=false</Embed-Dependency>
149             <Embed-Transitive>true</Embed-Transitive>
150             <Export-Package>
151               org.opendaylight.netvirt.openstack.netvirt.sfc,
152               org.opendaylight.netvirt.openstack.netvirt.sfc.workaround.services
153             </Export-Package>
154           </instructions>
155         </configuration>
156       </plugin>
157       <plugin>
158         <groupId>org.apache.maven.plugins</groupId>
159         <artifactId>maven-checkstyle-plugin</artifactId>
160         <configuration>
161           <!--<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>-->
162         </configuration>
163       </plugin>
164       <plugin>
165         <groupId>org.apache.maven.plugins</groupId>
166         <artifactId>maven-surefire-plugin</artifactId>
167         <configuration>
168           <properties>
169             <property>
170               <name>listener</name>
171               <value>org.sonar.java.jacoco.JUnitListener</value>
172             </property>
173           </properties>
174         </configuration>
175       </plugin>
176     </plugins>
177   </build>
178
179   <!--
180       Maven Site Configuration
181
182       The following configuration is necessary for maven-site-plugin to
183       correctly identify the correct deployment path for OpenDaylight Maven
184       sites.
185   -->
186   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
187
188   <distributionManagement>
189     <site>
190       <id>opendaylight-site</id>
191       <url>${nexus.site.url}/${project.artifactId}/</url>
192     </site>
193   </distributionManagement>
194 </project>