Implementing checkStyleViolationSeverity=error for mdsal-eos-binding-api module
[mdsal.git] / entityownership / mdsal-eos-binding-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.mdsal</groupId>
13     <artifactId>mdsal-eos</artifactId>
14     <version>2.2.0-SNAPSHOT</version>
15   </parent>
16
17   <artifactId>mdsal-eos-binding-api</artifactId>
18   <packaging>bundle</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.mdsal</groupId>
27       <artifactId>mdsal-eos-common-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.mdsal</groupId>
31       <artifactId>mdsal-eos-common-spi</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.mdsal.model</groupId>
35       <artifactId>general-entity</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.yangtools</groupId>
39       <artifactId>concepts</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal</groupId>
43       <artifactId>yang-binding</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>yang-common</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.osgi</groupId>
51       <artifactId>org.osgi.core</artifactId>
52       <scope>provided</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.apache.commons</groupId>
56       <artifactId>commons-lang3</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>junit</groupId>
61       <artifactId>junit</artifactId>
62       <scope>test</scope>
63     </dependency>
64   </dependencies>
65   <build>
66     <plugins>
67         <plugin>
68           <groupId>org.apache.maven.plugins</groupId>
69           <artifactId>maven-checkstyle-plugin</artifactId>
70           <configuration>
71               <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
72           </configuration>
73       </plugin>
74     </plugins>
75   </build>
76   <scm>
77     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
78     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
79     <tag>HEAD</tag>
80     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
81   </scm>
82
83   <!--
84       Maven Site Configuration
85
86       The following configuration is necessary for maven-site-plugin to
87       correctly identify the correct deployment path for OpenDaylight Maven
88       sites.
89   -->
90   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
91
92   <distributionManagement>
93     <site>
94       <id>opendaylight-site</id>
95       <url>${nexus.site.url}/${project.artifactId}/</url>
96     </site>
97   </distributionManagement>
98
99 </project>