checkStyleViolationSeverity=error implemented for mdsal-dom-spi module
[mdsal.git] / dom / mdsal-dom-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>mdsal-dom</artifactId>
7     <version>2.2.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>mdsal-dom-api</artifactId>
10   <packaging>bundle</packaging>
11   <dependencies>
12     <dependency>
13       <groupId>org.opendaylight.mdsal</groupId>
14       <artifactId>mdsal-common-api</artifactId>
15     </dependency>
16     <dependency>
17       <groupId>org.opendaylight.yangtools</groupId>
18       <artifactId>yang-data-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.yangtools</groupId>
22       <artifactId>yang-model-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.osgi</groupId>
26       <artifactId>org.osgi.core</artifactId>
27     </dependency>
28
29     <dependency>
30       <groupId>junit</groupId>
31       <artifactId>junit</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>yang-data-impl</artifactId>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.mockito</groupId>
40       <artifactId>mockito-all</artifactId>
41       <scope>test</scope>
42     </dependency>
43   </dependencies>
44   <build>
45     <plugins>
46       <plugin>
47         <groupId>org.apache.felix</groupId>
48         <artifactId>maven-bundle-plugin</artifactId>
49         <extensions>true</extensions>
50       </plugin>
51       <plugin>
52           <groupId>org.apache.maven.plugins</groupId>
53           <artifactId>maven-checkstyle-plugin</artifactId>
54           <configuration>
55               <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
56           </configuration>
57       </plugin>
58     </plugins>
59   </build>
60   <scm>
61     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
62     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
63     <tag>HEAD</tag>
64     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
65   </scm>
66
67   <!--
68       Maven Site Configuration
69
70       The following configuration is necessary for maven-site-plugin to
71       correctly identify the correct deployment path for OpenDaylight Maven
72       sites.
73   -->
74   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
75
76   <distributionManagement>
77     <site>
78       <id>opendaylight-site</id>
79       <url>${nexus.site.url}/${project.artifactId}/</url>
80     </site>
81   </distributionManagement>
82
83 </project>