Migrate off deprecated APIs, to mdsal.binding.api.DataBroker
[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-lite</artifactId>
14     <version>3.1.3</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.unimgr</groupId>
19   <artifactId>unimgr-aggregator</artifactId>
20   <version>0.5.0-SNAPSHOT</version>
21   <name>ODL :: unimgr :: ${project.artifactId}</name>
22   <packaging>pom</packaging>
23   <modelVersion>4.0.0</modelVersion>
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27
28   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>org.apache.maven.plugins</groupId>
33         <artifactId>maven-deploy-plugin</artifactId>
34         <configuration>
35           <skip>true</skip>
36         </configuration>
37       </plugin>
38       <plugin>
39         <groupId>org.apache.maven.plugins</groupId>
40         <artifactId>maven-install-plugin</artifactId>
41         <configuration>
42           <skip>true</skip>
43         </configuration>
44       </plugin>
45     </plugins>
46   </build>
47
48   <profiles>
49     <profile>
50       <id>models</id>
51       <modules>
52         <module>cisco-xrmodels</module>
53       </modules>
54       <activation><activeByDefault>true</activeByDefault></activation>
55     </profile>
56     <profile>
57       <id>main</id>
58       <modules>
59         <module>legato-api</module>
60         <module>nrp-api</module>
61         <module>impl</module>
62         <module>cisco-xr-driver</module>
63         <module>ovs-driver</module>
64         <module>template-driver</module>
65         <module>karaf</module>
66         <module>features</module>
67         <module>artifacts</module>
68       </modules>
69       <activation><activeByDefault>true</activeByDefault></activation>
70     </profile>
71     <profile>
72       <id>test</id>
73       <modules>
74         <module>it</module>
75       </modules>
76       <activation><activeByDefault>false</activeByDefault></activation>
77     </profile>
78   </profiles>
79
80   <scm>
81     <connection>scm:git:ssh://git.opendaylight.org:29418/unimgr.git</connection>
82     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/unimgr.git</developerConnection>
83     <tag>HEAD</tag>
84     <url>https://wiki.opendaylight.org/view/unimgr:Main</url>
85   </scm>
86 </project>