Map IdP assertions to local; initial code version
[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-sssd</module>
25     <module>aaa-authn-keystone</module>
26     <module>aaa-authn-basic</module>
27     <module>aaa-idmlight</module>
28     <module>aaa-authz</module>
29     <module>aaa-idp-mapping</module>
30     <module>features</module>
31     <module>distribution-karaf</module>
32     <!-- FIXME: Add integration tests back in
33     <module>aaa-it</module>
34     -->
35   </modules>
36
37   <build>
38     <plugins>
39       <plugin>
40         <groupId>org.apache.maven.plugins</groupId>
41         <artifactId>maven-checkstyle-plugin</artifactId>
42         <version>${checkstyle.version}</version>
43         <configuration>
44           <!-- checkstyle is evil -->
45           <skip>true</skip>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50   <scm>
51     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</connection>
52     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa.git</developerConnection>
53     <tag>HEAD</tag>
54     <url>https://wiki.opendaylight.org/view/AAA:Main</url>
55   </scm>
56
57 </project>