Merge "Fix patch error because of whitespace in run.sh."
[integration/distribution.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <prerequisites>
6     <maven>3.0</maven>
7   </prerequisites>
8   <groupId>org.opendaylight.integration</groupId>
9   <artifactId>root</artifactId>
10   <version>0.1.0-SNAPSHOT</version>
11   <name>OpenDaylight Integration Project</name>
12   <packaging>pom</packaging>
13   <url>https://wiki.opendaylight.org/view/CrossProject:Integration_Group</url>
14   <scm>
15     <connection>scm:git:https://git.opendaylight.org/gerrit/p/integration.git</connection>
16   </scm>
17   <properties>
18     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
19     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20   </properties>
21   <modules>
22     <module>distributions/</module>
23   </modules>
24
25   <repositories>
26
27     <!-- OpenDayLight Repo Mirror -->
28     <repository>
29       <id>opendaylight-mirror</id>
30       <name>opendaylight-mirror</name>
31       <url>${nexusproxy}/groups/public/</url>
32       <snapshots>
33           <enabled>false</enabled>
34       </snapshots>
35       <releases>
36           <enabled>true</enabled>
37           <updatePolicy>never</updatePolicy>
38       </releases>
39     </repository>
40     <!-- OpenDayLight Snapshot artifact -->
41     <repository>
42       <id>opendaylight-snapshot</id>
43       <name>opendaylight-snapshot</name>
44       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
45       <snapshots>
46           <enabled>true</enabled>
47       </snapshots>
48       <releases>
49           <enabled>false</enabled>
50       </releases>
51     </repository>
52   </repositories>
53
54   <pluginRepositories>
55     <pluginRepository>
56       <id>central2</id>
57       <name>central2</name>
58       <url>${nexusproxy}/repositories/central2/</url>
59     </pluginRepository>
60     <pluginRepository>
61       <id>opendaylight-snapshot</id>
62       <name>central2</name>
63       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
64     </pluginRepository>
65   </pluginRepositories>
66
67   <distributionManagement>
68     <!-- OpenDayLight Released artifact -->
69     <repository>
70       <id>opendaylight-release</id>
71       <url>${nexusproxy}/repositories/opendaylight.release/</url>
72     </repository>
73     <!-- OpenDayLight Snapshot artifact -->
74     <snapshotRepository>
75       <id>opendaylight-snapshot</id>
76       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
77     </snapshotRepository>
78     <site>
79       <id>${project.artifactId}-site</id>
80       <url>./</url>
81     </site>
82   </distributionManagement>
83 </project>