Lighty support Silicon migration
[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"
9          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>odlparent</artifactId>
15         <version>8.1.1</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.transportpce</groupId>
20     <artifactId>transportpce-aggregator</artifactId>
21     <version>4.0.0-SNAPSHOT</version>
22     <name>transportpce</name>
23     <packaging>pom</packaging>
24
25     <scm>
26         <connection>scm:git:ssh://git.opendaylight.org:29418/transportpce.git</connection>
27         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/transportpce.git</developerConnection>
28         <tag>HEAD</tag>
29         <url>https://wiki.opendaylight.org/display/ODL/TransportPCE</url>
30     </scm>
31
32     <modules>
33         <module>ordmodels</module>
34         <module>tapimodels</module>
35         <module>api</module>
36         <module>common</module>
37         <module>test-common</module>
38         <module>renderer</module>
39         <module>networkmodel</module>
40         <module>inventory</module>
41         <module>olm</module>
42         <module>pce</module>
43         <module>servicehandler</module>
44         <module>tapi</module>
45         <module>nbinotifications</module>
46         <module>dmaap-client</module>
47         <module>features</module>
48         <module>karaf</module>
49     </modules>
50
51     <build>
52         <plugins>
53             <plugin>
54                 <groupId>org.apache.maven.plugins</groupId>
55                 <artifactId>maven-deploy-plugin</artifactId>
56                 <configuration>
57                     <skip>true</skip>
58                 </configuration>
59             </plugin>
60             <plugin>
61                 <groupId>org.apache.maven.plugins</groupId>
62                 <artifactId>maven-install-plugin</artifactId>
63                 <configuration>
64                     <skip>true</skip>
65                 </configuration>
66             </plugin>
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-javadoc-plugin</artifactId>
70                 <configuration>
71                     <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
72                     <excludePackageNames>*</excludePackageNames>
73                 </configuration>
74             </plugin>
75         </plugins>
76     </build>
77
78 </project>
79
80