Fix wrong import for DestinationEvpnCase
[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.bgpcep</groupId>
22         <artifactId>bgpcep-parent</artifactId>
23         <version>0.6.0-SNAPSHOT</version>
24         <relativePath>parent</relativePath>
25     </parent>
26
27     <artifactId>bgpcep-aggregator</artifactId>
28     <packaging>pom</packaging>
29     <name>bgpcep</name> <!-- Used by Sonar to set project name -->
30     <description>BGPCEP top-level aggregator</description>
31
32     <modules>
33         <!-- Well-known -->
34         <module>artifacts</module>
35         <module>features</module>
36         <module>parent</module>
37
38         <!-- Common infra -->
39         <module>concepts</module>
40         <module>util</module>
41
42         <!-- Subsystems -->
43         <module>bgp</module>
44         <module>pcep</module>
45         <module>programming</module>
46         <module>rsvp</module>
47         <module>topology</module>
48
49         <!-- Integration tests -->
50         <module>integration-tests</module>
51
52         <!--Test tools -->
53         <module>data-change-counter</module>
54         <module>data-change-counter-controller-config</module>
55
56         <module>distribution-karaf</module>
57
58     </modules>
59
60     <build>
61         <plugins>
62             <plugin>
63                 <artifactId>maven-deploy-plugin</artifactId>
64                 <configuration>
65                     <skip>true</skip>
66                 </configuration>
67             </plugin>
68             <plugin>
69                 <groupId>org.apache.maven.plugins</groupId>
70                 <artifactId>maven-javadoc-plugin</artifactId>
71                 <executions>
72                     <execution>
73                         <id>aggregate</id>
74                         <goals>
75                             <goal>aggregate</goal>
76                         </goals>
77                         <phase>site</phase>
78                     </execution>
79                 </executions>
80             </plugin>
81         </plugins>
82     </build>
83
84     <reporting>
85         <plugins>
86             <plugin>
87                 <groupId>org.apache.maven.plugins</groupId>
88                 <artifactId>maven-project-info-reports-plugin</artifactId>
89                 <version>${maven.info.reports.version}</version>
90                 <reportSets>
91                     <reportSet>
92                         <reports>
93                             <report>dependency-info</report>
94                             <report>license</report>
95                         </reports>
96                     </reportSet>
97                 </reportSets>
98             </plugin>
99         </plugins>
100     </reporting>
101
102   <profiles>
103     <profile>
104       <!--
105           This profile is to ensure we only build javadocs reports
106           when we plan to deploy Maven site for our project.
107       -->
108       <id>maven-site</id>
109       <activation>
110         <file>
111           <exists>${user.dir}/deploy-site.xml</exists>
112         </file>
113       </activation>
114
115       <build>
116         <plugins>
117           <plugin>
118             <groupId>org.apache.maven.plugins</groupId>
119             <artifactId>maven-javadoc-plugin</artifactId>
120             <inherited>false</inherited>
121             <executions>
122               <execution>
123                 <id>aggregate</id>
124                 <goals>
125                   <goal>aggregate</goal>
126                 </goals>
127                 <phase>package</phase>
128             </execution>
129             </executions>
130           </plugin>
131         </plugins>
132       </build>
133     </profile>
134   </profiles>
135
136   <!--
137       Maven Site Configuration
138
139       The following configuration is necessary for maven-site-plugin to
140       correctly identify the correct deployment path for OpenDaylight Maven
141       sites.
142   -->
143   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
144
145   <distributionManagement>
146     <site>
147       <id>opendaylight-site</id>
148       <url>${nexus.site.url}/</url>
149     </site>
150   </distributionManagement>
151 </project>