78ddf8c64d0ec153e656849019021374609f2b7f
[integration/test.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright (c) 2016 The Linux Foundation and others.  All rights reserved.
4
5   This program and the accompanying materials are made available under the
6   terms of the Eclipse Distribution License v1.0 which accompanies this distribution,
7   and is available at http://www.eclipse.org/org/documents/edl-v10.php
8 -->
9 <project
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
11   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
12   <modelVersion>4.0.0</modelVersion>
13
14   <groupId>org.opendaylight.integration.test</groupId>
15   <artifactId>integration-test-root</artifactId>
16   <version>1.0.0-SNAPSHOT</version>
17   <packaging>pom</packaging>
18   <name>integration/test</name> <!-- Used by Sonar to set project name -->
19   <description>
20     The purpose of the Integration-Test sub-project is to be the holder for all
21     the system test code and system test tools (test tools that are specific to
22     OpenDaylight but not specific to a particular OpenDaylight project and do
23     not need to concern themselves with changing internal APIs of an
24     OpenDaylight project; such test tools shall be designed to depend only on
25     one project and should live in the project in which they depend) as well as
26     the coordinator and driver for OpenDaylight test efforts.
27   </description>
28   <inceptionYear>2015</inceptionYear>
29   <url>http://www.opendaylight.org/integration/test</url>
30
31   <licenses>
32     <license>
33       <name>Eclipse Public License</name>
34       <url>http://www.eclipse.org/legal/epl-v10.html</url>
35       <distribution>repo</distribution>
36     </license>
37   </licenses>
38
39   <organization>
40     <name>OpenDaylight</name>
41     <url>http://www.opendaylight.org/</url>
42   </organization>
43
44   <developers>
45     <developer>
46       <id>jamoluhrsen</id>
47       <name>Jamo Luhrsen</name>
48       <email>jluhrsen@gmail.com</email>
49       <organization>Red Hat</organization>
50       <organizationUrl>https://www.redhat.com/</organizationUrl>
51       <roles>
52         <role>integration</role>
53       </roles>
54       <timezone>America/Los_Angeles</timezone>
55     </developer>
56
57     <developer>
58       <id>LuisGomez</id>
59       <name>Luis Gomez</name>
60       <email>ecelgp@gmail.com</email>
61       <organization>Brocade</organization>
62       <organizationUrl>https://www.brocade.com/</organizationUrl>
63       <roles>
64         <role>integration</role>
65       </roles>
66       <timezone>America/Los_Angeles</timezone>
67     </developer>
68
69     <developer>
70       <id>dfarrell07</id>
71       <name>Daniel Farrell</name>
72       <email>dfarrell@redhat.com</email>
73       <organization>Red Hat</organization>
74       <organizationUrl>https://www.redhat.com/</organizationUrl>
75       <roles>
76         <role>integration</role>
77       </roles>
78       <timezone>America/Los_Angeles</timezone>
79     </developer>
80
81     <developer>
82       <id>vrpolak</id>
83       <name>Vratko Polák</name>
84       <email>vrpolak@cisco.com</email>
85       <organization>Cisco Systems</organization>
86       <organizationUrl>https://www.cisco.com/</organizationUrl>
87       <roles>
88         <role>integration</role>
89       </roles>
90       <timezone>America/Los_Angeles</timezone>
91     </developer>
92
93     <developer>
94       <id>zxiiro</id>
95       <name>Thanh Ha</name>
96       <email>thanh.ha@linuxfoundation.org</email>
97       <organization>The Linux Foundation</organization>
98       <organizationUrl>https://www.linuxfoundation.org/</organizationUrl>
99       <roles>
100         <role>releng</role>
101       </roles>
102       <timezone>America/New_York</timezone>
103       <properties>
104         <picUrl>https://www.opendaylight.org/sites/www.opendaylight.org/files/styles/thumbnail/public/members/logos/thahn-ha.png</picUrl>
105       </properties>
106     </developer>
107   </developers>
108
109   <issueManagement>
110     <system>Bugzilla</system>
111     <url>https://bugs.opendaylight.org/</url>
112   </issueManagement>
113
114   <ciManagement>
115     <system>Jenkins</system>
116     <url>https://jenkins.opendaylight.org/releng</url>
117   </ciManagement>
118
119   <mailingLists>
120     <mailingList>
121       <name>Integration Dev Mailing List</name>
122       <subscribe>dev-subscribe@lists.opendaylight.org</subscribe>
123       <unsubscribe>dev-unsubscribe@lists.opendaylight.org</unsubscribe>
124       <post>integration-dev@lists.opendaylight.org</post>
125       <archive>https://lists.opendaylight.org/pipermail/integration-dev/</archive>
126     </mailingList>
127   </mailingLists>
128
129   <scm>
130     <connection>scm:git:https://git.opendaylight.org/gerrit/integration/test</connection>
131     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration/test</developerConnection>
132     <url>https://git.opendaylight.org/gerrit/gitweb?p=integration%2Ftest.git;a=summary</url>
133   </scm>
134
135   <properties>
136     <!-- Maven plugin versions -->
137     <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
138     <maven-install-plugin.version>2.5.2</maven-install-plugin.version>
139     <maven-site-plugin.version>3.4</maven-site-plugin.version>
140     <maven-project-info-reports-plugin.version>2.8</maven-project-info-reports-plugin.version>
141
142     <!-- Extra plugin versions -->
143     <wagon.version>2.9</wagon.version>
144   </properties>
145
146   <build>
147     <plugins>
148       <plugin>
149         <groupId>org.apache.maven.plugins</groupId>
150         <artifactId>maven-install-plugin</artifactId>
151         <version>${maven-install-plugin.version}</version>
152         <configuration>
153           <skip>true</skip>
154         </configuration>
155       </plugin>
156       <plugin>
157         <groupId>org.apache.maven.plugins</groupId>
158         <artifactId>maven-deploy-plugin</artifactId>
159         <version>${maven-deploy-plugin.version}</version>
160         <configuration>
161           <skip>true</skip>
162         </configuration>
163       </plugin>
164       <plugin>
165         <groupId>org.apache.maven.plugins</groupId>
166         <artifactId>maven-site-plugin</artifactId>
167         <version>${maven-site-plugin.version}</version>
168         <configuration>
169           <skip>true</skip>
170         </configuration>
171       </plugin>
172     </plugins>
173   </build>
174
175   <reporting>
176     <plugins>
177       <plugin>
178         <groupId>org.apache.maven.plugins</groupId>
179         <artifactId>maven-project-info-reports-plugin</artifactId>
180         <version>${maven-project-info-reports-plugin.version}</version>
181       </plugin>
182     </plugins>
183   </reporting>
184
185   <profiles>
186     <profile>
187       <activation>
188         <property>
189           <name>stream</name>
190         </property>
191       </activation>
192       <build>
193         <plugins>
194           <plugin>
195             <groupId>org.apache.maven.plugins</groupId>
196             <artifactId>maven-site-plugin</artifactId>
197             <version>${maven-site-plugin.version}</version>
198             <dependencies>
199               <dependency>
200                    <groupId>org.apache.maven.wagon</groupId>
201                    <artifactId>wagon-webdav-jackrabbit</artifactId>
202                    <version>${wagon.version}</version>
203                </dependency>
204             </dependencies>
205             <configuration>
206               <skip>false</skip>
207             </configuration>
208           </plugin>
209         </plugins>
210       </build>
211     </profile>
212   </profiles>
213
214   <distributionManagement>
215     <site>
216       <id>opendaylight-site</id>
217       <name>OpenDaylight Site</name>
218       <url>dav:http://nexus.opendaylight.org/content/sites/site/${project.groupId}/${stream}/</url>
219     </site>
220   </distributionManagement>
221 </project>