Implemented EVC delete
[unimgr.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <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">
10
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent</artifactId>
14     <version>1.6.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.unimgr</groupId>
19   <artifactId>unimgr-aggregator</artifactId>
20   <version>0.0.1-SNAPSHOT</version>
21   <name>unimgr</name>
22   <packaging>pom</packaging>
23   <modelVersion>4.0.0</modelVersion>
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27   <modules>
28     <module>api</module>
29     <module>impl</module>
30     <module>cli</module>
31     <module>it</module>
32     <module>karaf</module>
33     <module>features</module>
34     <module>artifacts</module>
35   </modules>
36   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
37   <build>
38     <plugins>
39       <plugin>
40         <groupId>org.apache.maven.plugins</groupId>
41         <artifactId>maven-deploy-plugin</artifactId>
42         <configuration>
43           <skip>true</skip>
44         </configuration>
45       </plugin>
46       <plugin>
47         <groupId>org.apache.maven.plugins</groupId>
48         <artifactId>maven-install-plugin</artifactId>
49         <configuration>
50           <skip>true</skip>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55
56   <scm>
57     <connection>scm:git:ssh://git.opendaylight.org:29418/unimgr.git</connection>
58     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/unimgr.git</developerConnection>
59     <tag>HEAD</tag>
60     <url>https://wiki.opendaylight.org/view/unimgr:Main</url>
61   </scm>
62 </project>