Merge "Commented out frequently replayed BGPMIP errorlogs"
[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.5.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.3.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.7.0-SNAPSHOT</neutron.model.version>
46     <sfc.version>0.3.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>utils.mdsal-utils</artifactId>
80       <version>${project.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>junit</groupId>
84       <artifactId>junit</artifactId>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.mockito</groupId>
89       <artifactId>mockito-all</artifactId>
90       <scope>test</scope>
91     </dependency>
92   </dependencies>
93
94   <build>
95     <plugins>
96       <plugin>
97         <groupId>org.apache.felix</groupId>
98         <artifactId>maven-bundle-plugin</artifactId>
99         <extensions>true</extensions>
100         <configuration>
101           <instructions>
102             <Embed-Transitive>true</Embed-Transitive>
103             <Export-Package>
104             </Export-Package>
105           </instructions>
106         </configuration>
107       </plugin>
108       <plugin>
109         <groupId>org.apache.maven.plugins</groupId>
110         <artifactId>maven-checkstyle-plugin</artifactId>
111         <configuration>
112           <!--<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>-->
113         </configuration>
114       </plugin>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-surefire-plugin</artifactId>
118         <configuration>
119           <properties>
120             <property>
121               <name>listener</name>
122               <value>org.sonar.java.jacoco.JUnitListener</value>
123             </property>
124           </properties>
125         </configuration>
126       </plugin>
127     </plugins>
128   </build>
129
130   <!--
131       Maven Site Configuration
132
133       The following configuration is necessary for maven-site-plugin to
134       correctly identify the correct deployment path for OpenDaylight Maven
135       sites.
136   -->
137   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
138
139   <distributionManagement>
140     <site>
141       <id>opendaylight-site</id>
142       <url>${nexus.site.url}/${project.artifactId}/</url>
143     </site>
144   </distributionManagement>
145 </project>