checkStyleViolationSeverity=error implemented for mdsal-singleton-common-api and...
[mdsal.git] / singleton-service / mdsal-singleton-common-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.mdsal</groupId>
6     <artifactId>singleton-service</artifactId>
7     <version>2.2.0-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>mdsal-singleton-common-api</artifactId>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>org.opendaylight.mdsal</groupId>
16       <artifactId>mdsal-eos-common-api</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>com.google.guava</groupId>
20       <artifactId>guava</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.yangtools</groupId>
24       <artifactId>concepts</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>util</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.yangtools</groupId>
32       <artifactId>yang-common</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.yangtools</groupId>
41       <artifactId>mockito-configuration</artifactId>
42       <scope>test</scope>
43     </dependency>
44   </dependencies>
45   <build>
46       <plugins>
47             <plugin>
48                 <groupId>org.apache.maven.plugins</groupId>
49                 <artifactId>maven-checkstyle-plugin</artifactId>
50                 <configuration>
51                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
52                 </configuration>
53             </plugin>
54         </plugins>
55   </build>
56
57   <scm>
58     <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
59     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
60     <tag>HEAD</tag>
61     <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
62   </scm>
63
64   <!--
65       Maven Site Configuration
66
67       The following configuration is necessary for maven-site-plugin to
68       correctly identify the correct deployment path for OpenDaylight Maven
69       sites.
70   -->
71   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
72
73   <distributionManagement>
74     <site>
75       <id>opendaylight-site</id>
76       <url>${nexus.site.url}/${project.artifactId}/</url>
77     </site>
78   </distributionManagement>
79
80 </project>