[maven-release-plugin] prepare release master-tagforprepareonly-integration-bulk...
[integration/distribution.git] / 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   <prerequisites>
5     <maven>3.0</maven>
6   </prerequisites>
7   <groupId>org.opendaylight.integration</groupId>
8   <artifactId>root</artifactId>
9   <version>0.1.0</version>
10   <name>OpenDaylight Integration Project</name>
11   <packaging>pom</packaging>
12   <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
13   <scm>
14     <connection>scm:git:ssh://git.opendaylight.org:29418/integration.git</connection>
15     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration.git</developerConnection>
16     <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
17     <tag>HEAD</tag>
18   </scm>
19   <properties>
20     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
21     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22   </properties>
23   <modules>
24     <module>distributions/</module>
25   </modules>
26
27   <repositories>
28
29     <!-- OpenDayLight Repo Mirror -->
30     <repository>
31       <id>opendaylight-mirror</id>
32       <name>opendaylight-mirror</name>
33       <url>${nexusproxy}/groups/public/</url>
34       <snapshots>
35           <enabled>false</enabled>
36       </snapshots>
37       <releases>
38           <enabled>true</enabled>
39           <updatePolicy>never</updatePolicy>
40       </releases>
41     </repository>
42     <!-- OpenDayLight Snapshot artifact -->
43     <repository>
44       <id>opendaylight-snapshot</id>
45       <name>opendaylight-snapshot</name>
46       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
47       <snapshots>
48           <enabled>true</enabled>
49       </snapshots>
50       <releases>
51           <enabled>false</enabled>
52       </releases>
53     </repository>
54   </repositories>
55
56   <pluginRepositories>
57     <pluginRepository>
58       <id>central2</id>
59       <name>central2</name>
60       <url>${nexusproxy}/repositories/central2/</url>
61     </pluginRepository>
62     <pluginRepository>
63       <id>opendaylight-snapshot</id>
64       <name>central2</name>
65       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
66     </pluginRepository>
67   </pluginRepositories>
68
69   <distributionManagement>
70     <!-- OpenDayLight Released artifact -->
71     <repository>
72       <id>opendaylight-release</id>
73       <url>${nexusproxy}/repositories/opendaylight.release/</url>
74     </repository>
75     <!-- OpenDayLight Snapshot artifact -->
76     <snapshotRepository>
77       <id>opendaylight-snapshot</id>
78       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
79     </snapshotRepository>
80     <site>
81       <id>${project.artifactId}-site</id>
82       <url>./</url>
83     </site>
84   </distributionManagement>
85 </project>