Release aaa
[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>13.0.10</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.aaa</groupId>
19   <artifactId>aaa.project</artifactId>
20   <version>0.18.4</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-idm-store-h2</module>
37     <module>aaa-password-service</module>
38     <module>artifacts</module>
39     <module>features</module>
40     <module>parent</module>
41     <module>aaa-shiro</module>
42     <module>aaa-tokenauthrealm</module>
43     <module>dependency-check</module>
44     <module>web</module>
45     <module>docs</module>
46   </modules>
47
48   <profiles>
49     <profile>
50       <id>karaf</id>
51       <activation>
52         <activeByDefault>true</activeByDefault>
53       </activation>
54
55       <modules>
56         <module>karaf</module>
57       </modules>
58     </profile>
59
60     <profile>
61       <id>sonar-jacoco-aggregate</id>
62       <activation>
63         <property>
64           <name>odl.jacoco.aggregateFile</name>
65         </property>
66       </activation>
67       <build>
68         <plugins>
69           <plugin>
70             <groupId>org.jacoco</groupId>
71             <artifactId>jacoco-maven-plugin</artifactId>
72             <executions>
73               <execution>
74                 <id>merge</id>
75                 <goals>
76                   <goal>merge</goal>
77                 </goals>
78                 <phase>generate-resources</phase>
79                 <configuration>
80                   <destFile>${odl.jacoco.aggregateFile}</destFile>
81                   <fileSets>
82                     <fileSet>
83                       <directory>${project.basedir}</directory>
84                       <includes>
85                         <include>**/target/code-coverage/*.exec</include>
86                       </includes>
87                     </fileSet>
88                   </fileSets>
89                 </configuration>
90               </execution>
91             </executions>
92           </plugin>
93         </plugins>
94       </build>
95     </profile>
96   </profiles>
97
98   <scm>
99     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
100     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
101     <tag>HEAD</tag>
102     <url>https://wiki.opendaylight.org/view/AAA:Main</url>
103   </scm>
104 </project>