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