BGPCEP-704: Remove integration test
[bgpcep.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <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">
12
13     <modelVersion>4.0.0</modelVersion>
14     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.odlparent</groupId>
22         <artifactId>odlparent-lite</artifactId>
23         <version>2.0.5</version>
24         <relativePath/>
25     </parent>
26
27     <groupId>org.opendaylight.bgpcep</groupId>
28     <artifactId>bgpcep-aggregator</artifactId>
29     <version>0.9.0-SNAPSHOT</version>
30     <packaging>pom</packaging>
31     <name>bgpcep</name> <!-- Used by Sonar to set project name -->
32     <description>BGPCEP top-level aggregator</description>
33
34     <modules>
35         <!-- Well-known -->
36         <module>artifacts</module>
37         <module>features</module>
38         <module>parent</module>
39
40         <!-- Utility parents -->
41         <module>binding-parent</module>
42         <module>bundle-parent</module>
43         <module>config-parent</module>
44
45         <!-- Common infra -->
46         <module>concepts</module>
47         <module>dependency-version-management</module>
48         <module>util</module>
49
50         <!-- Subsystems -->
51         <module>bgp</module>
52         <module>bmp</module>
53         <module>pcep</module>
54         <module>programming</module>
55         <module>rsvp</module>
56         <module>topology</module>
57         <module>config-loader</module>
58
59         <!--Test tools -->
60         <module>data-change-counter</module>
61         <module>testtool-util</module>
62
63         <!-- Minimal complete distribution -->
64         <module>distribution-karaf</module>
65     </modules>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <artifactId>maven-deploy-plugin</artifactId>
71                 <configuration>
72                     <skip>true</skip>
73                 </configuration>
74             </plugin>
75             <plugin>
76                 <groupId>org.apache.maven.plugins</groupId>
77                 <artifactId>maven-javadoc-plugin</artifactId>
78                 <executions>
79                     <execution>
80                         <id>aggregate</id>
81                         <goals>
82                             <goal>aggregate</goal>
83                         </goals>
84                         <phase>site</phase>
85                     </execution>
86                 </executions>
87             </plugin>
88         </plugins>
89     </build>
90
91     <reporting>
92         <plugins>
93             <plugin>
94                 <groupId>org.apache.maven.plugins</groupId>
95                 <artifactId>maven-project-info-reports-plugin</artifactId>
96                 <reportSets>
97                     <reportSet>
98                         <reports>
99                             <report>dependency-info</report>
100                             <report>license</report>
101                         </reports>
102                     </reportSet>
103                 </reportSets>
104             </plugin>
105         </plugins>
106     </reporting>
107
108   <profiles>
109     <profile>
110       <!--
111           This profile is to ensure we only build javadocs reports
112           when we plan to deploy Maven site for our project.
113       -->
114       <id>maven-site</id>
115       <activation>
116         <file>
117           <exists>${user.dir}/deploy-site.xml</exists>
118         </file>
119       </activation>
120
121       <build>
122         <plugins>
123           <plugin>
124             <groupId>org.apache.maven.plugins</groupId>
125             <artifactId>maven-javadoc-plugin</artifactId>
126             <inherited>false</inherited>
127             <executions>
128               <execution>
129                 <id>aggregate</id>
130                 <goals>
131                   <goal>aggregate</goal>
132                 </goals>
133                 <phase>package</phase>
134             </execution>
135             </executions>
136           </plugin>
137         </plugins>
138       </build>
139     </profile>
140   </profiles>
141
142   <!--
143       Maven Site Configuration
144
145       The following configuration is necessary for maven-site-plugin to
146       correctly identify the correct deployment path for OpenDaylight Maven
147       sites.
148   -->
149   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
150
151   <distributionManagement>
152     <site>
153       <id>opendaylight-site</id>
154       <url>${nexus.site.url}/</url>
155     </site>
156   </distributionManagement>
157 </project>