Release Carbon
[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>1.8.4-Carbon</version>
24         <relativePath/>
25     </parent>
26
27     <groupId>org.opendaylight.bgpcep</groupId>
28     <artifactId>bgpcep-aggregator</artifactId>
29     <version>0.7.4-Carbon</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>util</module>
48
49         <!-- Subsystems -->
50         <module>bgp</module>
51         <module>pcep</module>
52         <module>programming</module>
53         <module>rsvp</module>
54         <module>topology</module>
55
56         <!-- Integration tests -->
57         <module>integration-tests</module>
58
59         <!--Test tools -->
60         <module>data-change-counter</module>
61         <module>testtool-util</module>
62
63     </modules>
64
65     <build>
66         <plugins>
67             <plugin>
68                 <artifactId>maven-deploy-plugin</artifactId>
69                 <configuration>
70                     <skip>true</skip>
71                 </configuration>
72             </plugin>
73             <plugin>
74                 <groupId>org.apache.maven.plugins</groupId>
75                 <artifactId>maven-javadoc-plugin</artifactId>
76                 <executions>
77                     <execution>
78                         <id>aggregate</id>
79                         <goals>
80                             <goal>aggregate</goal>
81                         </goals>
82                         <phase>site</phase>
83                     </execution>
84                 </executions>
85             </plugin>
86         </plugins>
87     </build>
88
89     <reporting>
90         <plugins>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-project-info-reports-plugin</artifactId>
94                 <version>${maven.info.reports.version}</version>
95                 <reportSets>
96                     <reportSet>
97                         <reports>
98                             <report>dependency-info</report>
99                             <report>license</report>
100                         </reports>
101                     </reportSet>
102                 </reportSets>
103             </plugin>
104         </plugins>
105     </reporting>
106
107   <profiles>
108     <profile>
109       <id>karaf</id>
110       <activation>
111         <activeByDefault>true</activeByDefault>
112       </activation>
113
114       <modules>
115         <module>distribution-karaf</module>
116       </modules>
117     </profile>
118   </profiles>
119 </project>