Updates to Renderer
[transportpce.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent</artifactId>
14     <version>2.0.4</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.transportpce</groupId>
19   <artifactId>transportpce-aggregator</artifactId>
20   <version>0.2.0-SNAPSHOT</version>
21   <name>transportpce</name>
22   <packaging>pom</packaging>
23
24   <scm>
25     <connection>scm:git:ssh://git.opendaylight.org:29418/transportpce.git</connection>
26     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/transportpce.git</developerConnection>
27     <tag>HEAD</tag>
28     <url>https://wiki.opendaylight.org/view/transportpce:Main</url>
29   </scm>
30
31   <modules>
32     <module>artifacts</module>
33     <module>api</module>
34     <module>ordmodels</module>
35     <module>impl</module>
36     <module>renderer</module>
37     <module>olm</module>
38     <module>stubrenderer</module>
39     <module>stubpce</module>
40     <module>servicehandler</module>
41     <module>cli</module>
42     <module>features</module>
43     <module>karaf</module>
44     <module>it</module>
45   </modules>
46
47   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
48   <build>
49     <plugins>
50       <plugin>
51         <groupId>org.apache.maven.plugins</groupId>
52         <artifactId>maven-deploy-plugin</artifactId>
53         <configuration>
54           <skip>true</skip>
55         </configuration>
56       </plugin>
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-install-plugin</artifactId>
60         <configuration>
61           <skip>true</skip>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66
67   <profiles>
68     <profile>
69       <!--
70           This profile is to ensure we only build javadocs reports
71           when we plan to deploy Maven site for our project.
72       -->
73       <id>maven-site</id>
74       <activation>
75         <file>
76           <exists>${user.dir}/deploy-site.xml</exists>
77         </file>
78       </activation>
79
80       <build>
81         <plugins>
82           <plugin>
83             <groupId>org.apache.maven.plugins</groupId>
84             <artifactId>maven-javadoc-plugin</artifactId>
85             <inherited>false</inherited>
86             <executions>
87               <execution>
88                 <id>aggregate</id>
89                 <goals>
90                   <goal>aggregate</goal>
91                 </goals>
92                 <phase>package</phase>
93             </execution>
94             </executions>
95           </plugin>
96         </plugins>
97       </build>
98     </profile>
99   </profiles>
100
101   <!--
102       Maven Site Configuration
103
104       The following configuration is necessary for maven-site-plugin to
105       correctly identify the correct deployment path for OpenDaylight Maven
106       sites.
107   -->
108   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
109
110   <distributionManagement>
111     <site>
112       <id>opendaylight-site</id>
113       <url>${nexus.site.url}/</url>
114     </site>
115   </distributionManagement>
116 </project>