a58be5c6055602f8bc1ee03d905c93875a6de4ec
[odlparent.git] / findbugs / pom.xml
1 <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/maven-v4_0_0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3
4   <parent>
5     <groupId>org.opendaylight.odlparent</groupId>
6     <artifactId>odlparent-lite</artifactId>
7     <version>1.8.2-SNAPSHOT</version>
8     <relativePath>../odlparent-lite</relativePath>
9   </parent>
10
11   <artifactId>findbugs</artifactId>
12   <name>ODL :: odlparent :: ${project.artifactId}</name>
13
14   <build>
15     <pluginManagement>
16       <plugins>
17         <plugin>
18           <artifactId>maven-compiler-plugin</artifactId>
19           <version>3.6.1</version>
20         </plugin>
21         <plugin>
22           <artifactId>maven-jar-plugin</artifactId>
23           <version>3.0.2</version>
24         </plugin>
25         <plugin>
26           <artifactId>maven-resources-plugin</artifactId>
27           <version>3.0.1</version>
28         </plugin>
29         <plugin>
30           <artifactId>maven-surefire-plugin</artifactId>
31           <version>2.19.1</version>
32         </plugin>
33       </plugins>
34     </pluginManagement>
35   </build>
36
37   <scm>
38     <connection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</connection>
39     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</developerConnection>
40     <tag>HEAD</tag>
41     <url>https://wiki.opendaylight.org/view/ODL_Root_Parent:Main</url>
42   </scm>
43
44   <!--
45     Maven Site Configuration
46
47     The following configuration is necessary for maven-site-plugin to
48     correctly identify the correct deployment path for OpenDaylight Maven
49     sites.
50   -->
51   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
52   <distributionManagement>
53     <site>
54       <id>opendaylight-site</id>
55       <url>${nexus.site.url}/${project.artifactId}/</url>
56     </site>
57   </distributionManagement>
58
59 </project>