Remove opendaylight directory
[netconf.git] / netconf / aaa-authn-odl-plugin / 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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.controller</groupId>
15         <artifactId>config-parent</artifactId>
16         <version>0.5.0-SNAPSHOT</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.netconf</groupId>
21     <artifactId>aaa-authn-odl-plugin</artifactId>
22     <version>1.1.0-SNAPSHOT</version>
23     <packaging>bundle</packaging>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.netconf</groupId>
29                 <artifactId>netconf-subsystem</artifactId>
30                 <version>${project.version}</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.opendaylight.aaa</groupId>
40             <artifactId>aaa-authn-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.slf4j</groupId>
44             <artifactId>slf4j-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.netconf</groupId>
48             <artifactId>netconf-auth</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.osgi</groupId>
52             <artifactId>org.osgi.core</artifactId>
53             <scope>provided</scope>
54         </dependency>
55
56         <!-- Testing Dependencies -->
57         <dependency>
58             <groupId>org.slf4j</groupId>
59             <artifactId>slf4j-simple</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.mockito</groupId>
64             <artifactId>mockito-all</artifactId>
65             <scope>test</scope>
66         </dependency>
67     </dependencies>
68 </project>