Release Beryllium-SR3
[netconf.git] / opendaylight / 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.netconf</groupId>
15         <artifactId>netconf-subsystem</artifactId>
16         <version>1.0.3-Beryllium-SR3</version>
17         <relativePath>..</relativePath>
18     </parent>
19
20     <artifactId>aaa-authn-odl-plugin</artifactId>
21     <packaging>bundle</packaging>
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.aaa</groupId>
25             <artifactId>aaa-authn-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.slf4j</groupId>
29             <artifactId>slf4j-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.netconf</groupId>
33             <artifactId>netconf-auth</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.osgi</groupId>
37             <artifactId>org.osgi.core</artifactId>
38             <scope>provided</scope>
39         </dependency>
40         <!-- Testing Dependencies -->
41         <dependency>
42             <groupId>junit</groupId>
43             <artifactId>junit</artifactId>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>org.slf4j</groupId>
48             <artifactId>slf4j-simple</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.mockito</groupId>
53             <artifactId>mockito-all</artifactId>
54             <scope>test</scope>
55         </dependency>
56     </dependencies>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.apache.felix</groupId>
62                 <artifactId>maven-bundle-plugin</artifactId>
63             </plugin>
64             <plugin>
65                 <groupId>org.opendaylight.yangtools</groupId>
66                 <artifactId>yang-maven-plugin</artifactId>
67             </plugin>
68         </plugins>
69     </build>
70 </project>