checkStyleViolationSeverity=error implemented for mdsal-eos-common-api, mdsal-eos...
[mdsal.git] / entityownership / mdsal-eos-common-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-common-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.yangtools</groupId>
27       <artifactId>concepts</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>util</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>yang-common</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>mockito-configuration</artifactId>
45       <scope>test</scope>
46     </dependency>
47   </dependencies>
48 <build>
49     <plugins>
50      <plugin>
51           <groupId>org.apache.maven.plugins</groupId>
52           <artifactId>maven-checkstyle-plugin</artifactId>
53           <configuration>
54               <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
55           </configuration>
56       </plugin>
57     </plugins>
58 </build>
59   <scm>
60     <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
61     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
62     <tag>HEAD</tag>
63     <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
64   </scm>
65
66   <!--
67       Maven Site Configuration
68
69       The following configuration is necessary for maven-site-plugin to
70       correctly identify the correct deployment path for OpenDaylight Maven
71       sites.
72   -->
73   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
74
75   <distributionManagement>
76     <site>
77       <id>opendaylight-site</id>
78       <url>${nexus.site.url}/${project.artifactId}/</url>
79     </site>
80   </distributionManagement>
81
82 </project>