Merge "Move aaa-h2-store bundle to use blueprint"
[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.apache.karaf.shell</groupId>
32       <artifactId>org.apache.karaf.shell.console</artifactId>
33       <version>${karaf.version}</version>
34     </dependency>
35
36     <!-- Testing Dependencies -->
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.mockito</groupId>
44       <artifactId>mockito-all</artifactId>
45       <scope>test</scope>
46     </dependency>
47   </dependencies>
48
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54       </plugin>
55     </plugins>
56   </build>
57 </project>