ad1a128f123b4166790857a30e5df8517b5f7a6c
[aaa.git] / aaa-authn-mdsal-store / aaa-authn-mdsal-store-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2015 Cisco 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   -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.controller</groupId>
17         <artifactId>config-parent</artifactId>
18         <version>0.6.0-SNAPSHOT</version>
19         <relativePath/>
20     </parent>
21
22     <groupId>org.opendaylight.aaa</groupId>
23     <artifactId>aaa-authn-mdsal-store-impl</artifactId>
24     <version>0.5.0-SNAPSHOT</version>
25     <packaging>bundle</packaging>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.aaa</groupId>
31                 <artifactId>aaa-artifacts</artifactId>
32                 <version>${project.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39     <dependencies>
40         <dependency>
41             <groupId>org.opendaylight.controller</groupId>
42             <artifactId>sal-binding-util</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.controller</groupId>
46             <artifactId>sal-common-util</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.yangtools</groupId>
50             <artifactId>yang-data-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>commons-codec</groupId>
54             <artifactId>commons-codec</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-api</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>config-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>sal-binding-config</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.aaa</groupId>
70             <artifactId>aaa-authn-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.aaa</groupId>
74             <artifactId>aaa-authn</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.aaa</groupId>
78             <artifactId>aaa-encrypt-service</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>sal-core-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.aaa</groupId>
86             <artifactId>aaa-authn-mdsal-api</artifactId>
87         </dependency>
88
89         <!-- Test dependencies -->
90         <dependency>
91             <groupId>junit</groupId>
92             <artifactId>junit</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.mockito</groupId>
97             <artifactId>mockito-all</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101           <groupId>org.powermock</groupId>
102           <artifactId>powermock-api-mockito</artifactId>
103           <scope>test</scope>
104         </dependency>
105         <dependency>
106           <groupId>org.powermock</groupId>
107           <artifactId>powermock-module-junit4</artifactId>
108           <scope>test</scope>
109         </dependency>
110     </dependencies>
111
112 </project>