Remove derivation from controller config-parent
[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.odlparent</groupId>
14     <artifactId>bundle-parent</artifactId>
15     <version>2.0.2</version>
16     <relativePath />
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.aaa</groupId>
21   <artifactId>aaa-cli</artifactId>
22   <version>0.6.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       <version>${project.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>org.apache.karaf.shell</groupId>
39       <artifactId>org.apache.karaf.shell.console</artifactId>
40       <version>${karaf.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>net.sf.ehcache</groupId>
44       <artifactId>ehcache</artifactId>
45       <version>2.8.3</version>
46     </dependency>
47
48     <!-- Testing Dependencies -->
49     <dependency>
50       <groupId>junit</groupId>
51       <artifactId>junit</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.powermock</groupId>
56       <artifactId>powermock-api-mockito</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.powermock</groupId>
61       <artifactId>powermock-module-junit4</artifactId>
62       <scope>test</scope>
63     </dependency>
64   </dependencies>
65
66   <build>
67     <plugins>
68       <plugin>
69         <groupId>org.apache.maven.plugins</groupId>
70         <artifactId>maven-checkstyle-plugin</artifactId>
71         <configuration>
72           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
73         </configuration>
74       </plugin>
75       <plugin>
76         <groupId>org.apache.felix</groupId>
77         <artifactId>maven-bundle-plugin</artifactId>
78         <extensions>true</extensions>
79         <configuration>
80           <instructions>
81             <!-- This bundle works with Karaf 3 and 4.0 -->
82             <Import-Package>
83               org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
84               org.apache.karaf.shell.console;version="[3.0.0,4.1)",
85               *
86             </Import-Package>
87           </instructions>
88         </configuration>
89       </plugin>
90     </plugins>
91   </build>
92 </project>