blob: e5e4f92f191b8d52c238a876e1fbd7da659f73ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>org.opendaylight.aaa</groupId>
<artifactId>aaa-parent</artifactId>
<version>0.3.2-Beryllium-SR2</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>aaa-authn-mdsal-store</artifactId>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<modules>
<module>aaa-authn-mdsal-api</module>
<module>aaa-authn-mdsal-config</module>
<module>aaa-authn-mdsal-store-impl</module>
</modules>
</project>
|