Merge changes I737d5336,Ied83aaa0
[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   <parent>
13     <groupId>org.opendaylight.aaa</groupId>
14     <artifactId>aaa-parent</artifactId>
15     <version>0.8.0-SNAPSHOT</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.aaa</groupId>
21   <artifactId>aaa-cli</artifactId>
22   <version>0.8.0-SNAPSHOT</version>
23   <name>ODL :: aaa :: ${project.artifactId}</name>
24   <packaging>bundle</packaging>
25
26   <dependencies>
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>aaa-cert</artifactId>
30       <version>${project.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.aaa</groupId>
34       <artifactId>aaa-authn-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.apache.karaf.shell</groupId>
38       <artifactId>org.apache.karaf.shell.console</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>net.sf.ehcache</groupId>
42       <artifactId>ehcache</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.aaa</groupId>
46       <artifactId>aaa-shiro</artifactId>
47     </dependency>
48
49     <!-- Testing Dependencies -->
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-api-mockito</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.powermock</groupId>
62       <artifactId>powermock-module-junit4</artifactId>
63       <scope>test</scope>
64     </dependency>
65   </dependencies>
66
67     <build>
68       <plugins>
69         <plugin>
70           <groupId>org.apache.felix</groupId>
71           <artifactId>maven-bundle-plugin</artifactId>
72           <configuration>
73             <instructions>
74               <Karaf-Commands>org.opendaylight.aaa.cli*</Karaf-Commands>
75             </instructions>
76           </configuration>
77         </plugin>
78       </plugins>
79     </build>
80 </project>