Release aaa
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.aaa</groupId>
13     <artifactId>aaa-parent</artifactId>
14     <version>0.18.4</version>
15     <relativePath>../parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.aaa</groupId>
20   <artifactId>aaa-cli</artifactId>
21   <version>0.18.4</version>
22   <name>ODL :: aaa :: ${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>com.github.spotbugs</groupId>
28       <artifactId>spotbugs-annotations</artifactId>
29       <optional>true</optional>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.aaa</groupId>
33       <artifactId>aaa-authn-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.aaa</groupId>
37       <artifactId>aaa-cert</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.aaa</groupId>
41       <artifactId>aaa-password-service-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.apache.karaf.shell</groupId>
45       <artifactId>org.apache.karaf.shell.core</artifactId>
46       <scope>provided</scope>
47     </dependency>
48   </dependencies>
49
50     <build>
51       <plugins>
52         <plugin>
53           <groupId>org.apache.felix</groupId>
54           <artifactId>maven-bundle-plugin</artifactId>
55           <configuration>
56             <instructions>
57               <Karaf-Commands>org.opendaylight.aaa.cli*</Karaf-Commands>
58             </instructions>
59           </configuration>
60         </plugin>
61       </plugins>
62     </build>
63 </project>