Initial WIP for AAA
[aaa.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.aaa</groupId>
6     <artifactId>commons.aaa</artifactId>
7     <version>0.1.0-SNAPSHOT</version>
8     <relativePath>commons/parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.aaa</groupId>
11   <artifactId>aaa.project</artifactId>
12   <version>0.1.0-SNAPSHOT</version>
13   <packaging>pom</packaging>
14   <prerequisites>
15     <maven>3.0</maven>
16   </prerequisites>
17
18   <modules>
19     <module>commons/parent</module>
20     <module>aaa-authn-api</module>
21     <module>aaa-authn</module>
22     <module>aaa-authn-sts</module>
23     <module>aaa-authn-store</module>
24     <module>aaa-authn-direct</module>
25     <module>aaa-authn-sssd</module>
26     <module>aaa-authn-keystone</module>
27   </modules>
28
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>org.apache.maven.plugins</groupId>
33         <artifactId>maven-checkstyle-plugin</artifactId>
34         <version>${checkstyle.version}</version>
35         <configuration>
36           <!-- checkstyle is evil -->
37           <skip>true</skip>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42   <scm>
43     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
44     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
45     <tag>HEAD</tag>
46     <url>https://wiki.opendaylight.org/view/AAA:Main</url>
47   </scm>
48
49 </project>