0c88fa6e9885a8a1db279d666ea3529673c336fe
[alto.git] / alto-basic / simple-ecs / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Yale University 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>odlparent</artifactId>
13     <version>1.8.2-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <version>0.4.2-SNAPSHOT</version>
18   <groupId>org.opendaylight.alto.basic</groupId>
19   <artifactId>alto-simple-ecs-aggregator</artifactId>
20   <name>ODL :: alto :: ${project.artifactId}</name>
21   <packaging>pom</packaging>
22   <modelVersion>4.0.0</modelVersion>
23   <prerequisites>
24     <maven>3.1.1</maven>
25   </prerequisites>
26   <profiles>
27     <profile>
28       <id>minimal</id>
29       <activation>
30         <activeByDefault>true</activeByDefault>
31       </activation>
32       <modules>
33         <module>api</module>
34         <module>impl</module>
35       </modules>
36     </profile>
37
38     <profile>
39       <id>alto-dev</id>
40       <modules>
41         <module>api</module>
42         <module>impl</module>
43         <module>features</module>
44         <module>artifacts</module>
45       </modules>
46     </profile>
47
48     <profile>
49       <id>alto-test</id>
50       <modules>
51         <module>api</module>
52         <module>impl</module>
53         <module>features</module>
54         <module>artifacts</module>
55         <module>karaf</module>
56         <module>it</module>
57       </modules>
58     </profile>
59   </profiles>
60   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
61   <build>
62     <plugins>
63       <plugin>
64         <groupId>org.apache.maven.plugins</groupId>
65         <artifactId>maven-deploy-plugin</artifactId>
66         <configuration>
67           <skip>true</skip>
68         </configuration>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-install-plugin</artifactId>
73         <configuration>
74           <skip>true</skip>
75         </configuration>
76       </plugin>
77     </plugins>
78   </build>
79
80 </project>