Add change ODL user password command
[aaa.git] / aaa-cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Inocybe Technology 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 INTERNAL
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12
13   <parent>
14     <groupId>org.opendaylight.aaa</groupId>
15     <artifactId>aaa-parent</artifactId>
16     <version>0.5.0-SNAPSHOT</version>
17     <relativePath>../parent</relativePath>
18   </parent>
19
20   <modelVersion>4.0.0</modelVersion>
21   <artifactId>aaa-cli</artifactId>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>aaa-cert</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.aaa</groupId>
32       <artifactId>aaa-authn-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.apache.karaf.shell</groupId>
36       <artifactId>org.apache.karaf.shell.console</artifactId>
37       <version>${karaf.version}</version>
38     </dependency>
39
40     <!-- Testing Dependencies -->
41     <dependency>
42       <groupId>junit</groupId>
43       <artifactId>junit</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.mockito</groupId>
48       <artifactId>mockito-all</artifactId>
49       <scope>test</scope>
50     </dependency>
51   </dependencies>
52
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.felix</groupId>
57         <artifactId>maven-bundle-plugin</artifactId>
58       </plugin>
59     </plugins>
60   </build>
61 </project>