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