BGPCEP no longer carries the framework
[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   <repositories>
25     <!-- jsonrpc4j mirror -->
26     <repository>
27       <id>jsonrpc4j-webdav-maven-repo</id>
28       <name>jsonrpc4j maven repository</name>
29       <url>${nexusproxy}/repositories/jsonrpc4j-webdav-maven-repo/</url>
30     </repository>
31     <!-- OpenDayLight Released artifact -->
32     <repository>
33       <id>opendaylight-release</id>
34       <name>opendaylight-release</name>
35       <url>${nexusproxy}/repositories/opendaylight.release/</url>
36     </repository>
37     <!-- OpenDayLight Snapshot artifact -->
38     <repository>
39       <id>opendaylight-snapshot</id>
40       <name>opendaylight-snapshot</name>
41       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
42     </repository>
43     <!-- EBR release -->
44     <!-- http://repository.springsource.com/maven/bundles/release -->
45     <repository>
46       <id>ebr-bundles-release</id>
47       <name>ebr-bundles-release</name>
48       <url>${nexusproxy}/repositories/ebr-bundles-release/</url>
49     </repository>
50     <!-- EBR external -->
51     <!-- http://repository.springsource.com/maven/bundles/external -->
52     <repository>
53       <id>ebr-bundles-external</id>
54       <name>ebr-bundles-external</name>
55       <url>${nexusproxy}/repositories/ebr-bundles-external/</url>
56     </repository>
57     <!-- Maven repo1 -->
58     <!-- http://repo1.maven.org/maven2 -->
59     <repository>
60       <id>central</id>
61       <name>central</name>
62       <url>http://repo1.maven.org/maven2</url>
63     </repository>
64     <!-- Third Packages hosted in local maven because not available in
65          other places -->
66     <repository>
67       <id>thirdparty</id>
68       <name>thirdparty</name>
69       <url>${nexusproxy}/repositories/thirdparty/</url>
70     </repository>
71     <!-- Jboss mirror -->
72     <!-- https://repository.jboss.org/nexus/content/repositories/releases -->
73     <repository>
74       <id>jboss.releases</id>
75       <name>jboss.releases</name>
76       <url>${nexusproxy}/repositories/jboss.releases/</url>
77     </repository>
78   </repositories>
79
80   <pluginRepositories>
81     <pluginRepository>
82       <id>central2</id>
83       <name>central2</name>
84       <url>${nexusproxy}/repositories/central2/</url>
85     </pluginRepository>
86     <pluginRepository>
87       <id>opendaylight-snapshot</id>
88       <name>central2</name>
89       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
90     </pluginRepository>
91   </pluginRepositories>
92
93   <distributionManagement>
94     <!-- OpenDayLight Released artifact -->
95     <repository>
96       <id>opendaylight-release</id>
97       <url>${nexusproxy}/repositories/opendaylight.release/</url>
98     </repository>
99     <!-- OpenDayLight Snapshot artifact -->
100     <snapshotRepository>
101       <id>opendaylight-snapshot</id>
102       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
103     </snapshotRepository>
104     <site>
105       <id>${project.artifactId}-site</id>
106       <url>./</url>
107     </site>
108   </distributionManagement>
109 </project>