Bug 4327 - Fixed DataTreeChangeListener registration in PingPongDataBroker
[controller.git] / opendaylight / commons / parent / 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   <groupId>org.opendaylight.controller</groupId>
5   <artifactId>commons.parent</artifactId>
6   <version>1.2.0-SNAPSHOT</version>
7   <packaging>pom</packaging>
8
9   <properties>
10     <nexus.repository.release>opendaylight.release</nexus.repository.release>
11     <nexus.repository.snapshot>opendaylight.snapshot</nexus.repository.snapshot>
12     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
13     <releaseplugin.version>2.3.2</releaseplugin.version>
14     <sitedeploy>dav:http://nexus.opendaylight.org/content/sites/site</sitedeploy>
15   </properties>
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>com.google.code.sortpom</groupId>
20         <artifactId>maven-sortpom-plugin</artifactId>
21         <version>2.2.1</version>
22         <configuration>
23           <createBackupFile>false</createBackupFile>
24           <encoding>${project.build.sourceEncoding}</encoding>
25           <keepBlankLines>true</keepBlankLines>
26           <lineSeparator>\n</lineSeparator>
27           <nrOfIndentSpace>2</nrOfIndentSpace>
28           <predefinedSortOrder>custom_1</predefinedSortOrder>
29           <sortDependencies>scope,groupId,artifactId</sortDependencies>
30           <sortPlugins>groupId,artifactId</sortPlugins>
31           <sortProperties>true</sortProperties>
32         </configuration>
33         <executions>
34           <execution>
35             <goals>
36               <goal>sort</goal>
37             </goals>
38             <phase>verify</phase>
39           </execution>
40         </executions>
41       </plugin>
42       <plugin>
43         <groupId>org.apache.maven.plugins</groupId>
44         <artifactId>maven-release-plugin</artifactId>
45         <version>${releaseplugin.version}</version>
46       </plugin>
47     </plugins>
48   </build>
49   <scm>
50     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
51     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
52     <tag>HEAD</tag>
53     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
54   </scm>
55   <distributionManagement>
56     <!-- OpenDayLight Released artifact -->
57     <repository>
58       <id>opendaylight-release</id>
59       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
60     </repository>
61     <!-- OpenDayLight Snapshot artifact -->
62     <snapshotRepository>
63       <id>opendaylight-snapshot</id>
64       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
65     </snapshotRepository>
66     <!-- Site deployment -->
67     <site>
68       <id>website</id>
69       <url>${sitedeploy}</url>
70     </site>
71   </distributionManagement>
72 </project>