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