Fix action/grouping lookup mechanics
[mdsal.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>odlparent-lite</artifactId>
15         <version>4.0.15</version>
16         <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-aggregator</artifactId>
22     <version>3.0.17-SNAPSHOT</version>
23     <packaging>pom</packaging>
24     <name>md-sal</name> <!-- Used by Sonar to set project name -->
25
26     <modules>
27         <module>artifacts</module>
28         <module>common</module>
29         <module>docs</module>
30         <module>features</module>
31         <module>dom</module>
32         <module>binding</module>
33         <module>binding2</module>
34         <module>model</module>
35         <module>model-binding2</module>
36         <module>entityownership</module>
37         <module>singleton-service</module>
38         <module>trace</module>
39     </modules>
40
41     <properties>
42         <maven.deploy.skip>true</maven.deploy.skip>
43         <maven.install.skip>true</maven.install.skip>
44     </properties>
45
46     <profiles>
47         <profile>
48             <id>sonar-jacoco-aggregate</id>
49             <activation>
50                 <property>
51                     <name>odl.jacoco.aggregateFile</name>
52                 </property>
53             </activation>
54             <build>
55                 <plugins>
56                     <plugin>
57                         <groupId>org.jacoco</groupId>
58                         <artifactId>jacoco-maven-plugin</artifactId>
59                         <executions>
60                             <execution>
61                                 <id>merge</id>
62                                 <goals>
63                                     <goal>merge</goal>
64                                 </goals>
65                                 <phase>generate-resources</phase>
66                                 <configuration>
67                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
68                                     <fileSets>
69                                         <fileSet>
70                                             <directory>${project.basedir}</directory>
71                                             <includes>
72                                                 <include>**/target/code-coverage/*.exec</include>
73                                             </includes>
74                                         </fileSet>
75                                     </fileSets>
76                                 </configuration>
77                             </execution>
78                         </executions>
79                     </plugin>
80                 </plugins>
81             </build>
82         </profile>
83     </profiles>
84
85     <scm>
86         <connection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</connection>
87         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
88         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
89         <tag>HEAD</tag>
90     </scm>
91 </project>