clean renderer NetworkModelWavelengthServiceImpl
[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>7.0.7</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.transportpce</groupId>
20     <artifactId>transportpce-aggregator</artifactId>
21     <version>3.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>features</module>
46         <module>karaf</module>
47     </modules>
48
49     <build>
50         <plugins>
51             <plugin>
52                 <groupId>org.apache.maven.plugins</groupId>
53                 <artifactId>maven-deploy-plugin</artifactId>
54                 <configuration>
55                     <skip>true</skip>
56                 </configuration>
57             </plugin>
58             <plugin>
59                 <groupId>org.apache.maven.plugins</groupId>
60                 <artifactId>maven-install-plugin</artifactId>
61                 <configuration>
62                     <skip>true</skip>
63                 </configuration>
64             </plugin>
65             <plugin>
66                 <groupId>org.apache.maven.plugins</groupId>
67                 <artifactId>maven-javadoc-plugin</artifactId>
68                 <configuration>
69                     <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
70                     <excludePackageNames>*</excludePackageNames>
71                 </configuration>
72             </plugin>
73         </plugins>
74     </build>
75
76 </project>
77
78