BUG-2643: enable checkstyle/findbugs in archetype
[controller.git] / opendaylight / md-sal / sal-dom-config / 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.controller</groupId>
6     <artifactId>config-plugin-parent</artifactId>
7     <version>0.8.0-SNAPSHOT</version>
8     <relativePath>../../config/config-plugin-parent</relativePath>
9   </parent>
10   <artifactId>sal-dom-config</artifactId>
11   <version>1.7.0-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13
14   <dependencyManagement>
15     <dependencies>
16       <dependency>
17         <groupId>org.opendaylight.mdsal</groupId>
18         <artifactId>mdsal-artifacts</artifactId>
19         <version>2.4.0-SNAPSHOT</version>
20         <type>pom</type>
21         <scope>import</scope>
22       </dependency>
23       <dependency>
24         <groupId>org.opendaylight.controller</groupId>
25         <artifactId>mdsal-artifacts</artifactId>
26         <version>1.7.0-SNAPSHOT</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32
33   <dependencies>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>config-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-common-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal-core-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-core-spi</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal</groupId>
52       <artifactId>mdsal-singleton-dom-impl</artifactId>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.felix</groupId>
60         <artifactId>maven-bundle-plugin</artifactId>
61         <extensions>true</extensions>
62       </plugin>
63     </plugins>
64   </build>
65
66   <scm>
67     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
68     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
69     <tag>HEAD</tag>
70     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
71   </scm>
72
73   <!--
74       Maven Site Configuration
75
76       The following configuration is necessary for maven-site-plugin to
77       correctly identify the correct deployment path for OpenDaylight Maven
78       sites.
79   -->
80   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
81
82   <distributionManagement>
83     <site>
84       <id>opendaylight-site</id>
85       <url>${nexus.site.url}/${project.artifactId}/</url>
86     </site>
87   </distributionManagement>
88 </project>