add skeleton web-jetty-impl (to be implemented)
[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>3.1.0</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.aaa</groupId>
19   <artifactId>aaa.project</artifactId>
20   <version>0.8.0-SNAPSHOT</version>
21   <packaging>pom</packaging>
22   <name>aaa</name> <!-- Used by Sonar to set project name -->
23
24   <modules>
25     <module>aaa-authn-api</module>
26     <module>aaa-encrypt-service</module>
27     <module>aaa-cert</module>
28     <module>aaa-cli</module>
29     <module>aaa-cli-jar</module>
30     <module>aaa-filterchain</module>
31     <module>artifacts</module>
32     <module>features</module>
33     <module>parent</module>
34     <module>aaa-shiro</module>
35     <module>aaa-shiro-act</module>
36     <module>dependency-check</module>
37     <module>web</module>
38   </modules>
39
40   <profiles>
41     <profile>
42       <id>karaf</id>
43       <activation>
44         <activeByDefault>true</activeByDefault>
45       </activation>
46
47       <modules>
48         <module>karaf</module>
49       </modules>
50     </profile>
51   </profiles>
52
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.maven.plugins</groupId>
57         <artifactId>maven-deploy-plugin</artifactId>
58         <configuration>
59           <skip>true</skip>
60         </configuration>
61       </plugin>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-install-plugin</artifactId>
65         <configuration>
66           <skip>true</skip>
67         </configuration>
68       </plugin>
69     </plugins>
70   </build>
71
72   <scm>
73     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
74     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
75     <tag>HEAD</tag>
76     <url>https://wiki.opendaylight.org/view/AAA:Main</url>
77   </scm>
78 </project>