Update ServiceHandler to send service notification
[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.0</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>nbinotifications</module>
46         <module>features</module>
47         <module>karaf</module>
48     </modules>
49
50     <build>
51         <plugins>
52             <plugin>
53                 <groupId>org.apache.maven.plugins</groupId>
54                 <artifactId>maven-deploy-plugin</artifactId>
55                 <configuration>
56                     <skip>true</skip>
57                 </configuration>
58             </plugin>
59             <plugin>
60                 <groupId>org.apache.maven.plugins</groupId>
61                 <artifactId>maven-install-plugin</artifactId>
62                 <configuration>
63                     <skip>true</skip>
64                 </configuration>
65             </plugin>
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-javadoc-plugin</artifactId>
69                 <configuration>
70                     <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
71                     <excludePackageNames>*</excludePackageNames>
72                 </configuration>
73             </plugin>
74         </plugins>
75     </build>
76
77 </project>
78
79