f510ef6975dee7cb8d142c9d72deaa31992d92c7
[netvirt.git] / openstack / sfc-translator / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Brocade Communications Systems, 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.sfc-translator-impl</artifactId>
24   <version>1.4.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <description>
28     This project provide a translation layer that converts OpenStack SFC API's neutron northbound yang model
29     to OpenDaylight SFC yang models.
30   </description>
31   <licenses>
32     <license>
33       <name>Eclipse Public License v1.0</name>
34       <url>http://www.eclipse.org/legal/epl-v10.html</url>
35     </license>
36   </licenses>
37   <developers>
38     <developer>
39       <name>Anil Vishnoi</name>
40       <email>vishnoianil@gmail.com</email>
41     </developer>
42   </developers>
43
44   <properties>
45     <neutron.model.version>0.8.0-SNAPSHOT</neutron.model.version>
46     <sfc.version>0.4.0-SNAPSHOT</sfc.version>
47   </properties>
48
49   <dependencies>
50     <dependency>
51       <groupId>org.opendaylight.mdsal.model</groupId>
52       <artifactId>ietf-topology</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.model</groupId>
56       <artifactId>ietf-packet-fields</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.mdsal.model</groupId>
60       <artifactId>iana-if-type-2014-05-08</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.neutron</groupId>
64       <artifactId>model</artifactId>
65       <version>${neutron.model.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.sfc</groupId>
69       <artifactId>sfc-model</artifactId>
70       <version>${sfc.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>org.slf4j</groupId>
74       <artifactId>slf4j-simple</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>openstack.net-virt-sfc-api</artifactId>
80       <version>${project.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>utils.mdsal-utils</artifactId>
85       <version>${project.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>junit</groupId>
89       <artifactId>junit</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.mockito</groupId>
94       <artifactId>mockito-all</artifactId>
95       <scope>test</scope>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101       <plugin>
102         <groupId>org.apache.felix</groupId>
103         <artifactId>maven-bundle-plugin</artifactId>
104         <extensions>true</extensions>
105         <configuration>
106           <instructions>
107             <Embed-Transitive>true</Embed-Transitive>
108             <Export-Package>
109             </Export-Package>
110           </instructions>
111         </configuration>
112       </plugin>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-checkstyle-plugin</artifactId>
116         <configuration>
117           <!--<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>-->
118         </configuration>
119       </plugin>
120       <plugin>
121         <groupId>org.apache.maven.plugins</groupId>
122         <artifactId>maven-surefire-plugin</artifactId>
123         <configuration>
124           <properties>
125             <property>
126               <name>listener</name>
127               <value>org.sonar.java.jacoco.JUnitListener</value>
128             </property>
129           </properties>
130         </configuration>
131       </plugin>
132     </plugins>
133   </build>
134
135   <!--
136       Maven Site Configuration
137
138       The following configuration is necessary for maven-site-plugin to
139       correctly identify the correct deployment path for OpenDaylight Maven
140       sites.
141   -->
142   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
143
144   <distributionManagement>
145     <site>
146       <id>opendaylight-site</id>
147       <url>${nexus.site.url}/${project.artifactId}/</url>
148     </site>
149   </distributionManagement>
150 </project>