3fa1129f6ee9da2a99e43ffa3fb060548c53c39c
[aaa.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 - 2017 Brocade Communications Systems, Inc. and others. 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
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   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent-lite</artifactId>
14     <version>4.0.9</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.aaa</groupId>
19   <artifactId>aaa.project</artifactId>
20   <version>0.9.0-SNAPSHOT</version>
21   <packaging>pom</packaging>
22   <name>aaa</name> <!-- Used by Sonar to set project name -->
23
24   <properties>
25     <maven.deploy.skip>true</maven.deploy.skip>
26     <maven.install.skip>true</maven.install.skip>
27   </properties>
28
29   <modules>
30     <module>aaa-authn-api</module>
31     <module>aaa-encrypt-service</module>
32     <module>aaa-cert</module>
33     <module>aaa-cli</module>
34     <module>aaa-cli-jar</module>
35     <module>aaa-filterchain</module>
36     <module>aaa-password-service</module>
37     <module>artifacts</module>
38     <module>features</module>
39     <module>parent</module>
40     <module>aaa-shiro</module>
41     <module>dependency-check</module>
42     <module>web</module>
43   </modules>
44
45   <profiles>
46     <profile>
47       <id>karaf</id>
48       <activation>
49         <activeByDefault>true</activeByDefault>
50       </activation>
51
52       <modules>
53         <module>karaf</module>
54       </modules>
55     </profile>
56
57     <profile>
58       <id>sonar-jacoco-aggregate</id>
59       <activation>
60         <property>
61           <name>odl.jacoco.aggregateFile</name>
62         </property>
63       </activation>
64       <build>
65         <plugins>
66           <plugin>
67             <groupId>org.jacoco</groupId>
68             <artifactId>jacoco-maven-plugin</artifactId>
69             <executions>
70               <execution>
71                 <id>merge</id>
72                 <goals>
73                   <goal>merge</goal>
74                 </goals>
75                 <phase>generate-resources</phase>
76                 <configuration>
77                   <destFile>${odl.jacoco.aggregateFile}</destFile>
78                   <fileSets>
79                     <fileSet>
80                       <directory>${project.basedir}</directory>
81                       <includes>
82                         <include>**/target/code-coverage/*.exec</include>
83                       </includes>
84                     </fileSet>
85                   </fileSets>
86                 </configuration>
87               </execution>
88             </executions>
89           </plugin>
90         </plugins>
91       </build>
92     </profile>
93   </profiles>
94
95   <scm>
96     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
97     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
98     <tag>HEAD</tag>
99     <url>https://wiki.opendaylight.org/view/AAA:Main</url>
100   </scm>
101 </project>