Bug 8157 Fixed deleting a user and recreating it fails with aaa-cli-jar
[aaa.git] / aaa-shiro-act / pom.xml
1 <!-- Copyright (c) 2015 Brocade Communications Systems, Inc. and others.
2   All rights reserved. This program and the accompanying materials are made
3   available under the terms of the Eclipse Public License v1.0 which accompanies
4   this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
5 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
7   <modelVersion>4.0.0</modelVersion>
8   <parent>
9     <groupId>org.opendaylight.aaa</groupId>
10     <artifactId>aaa-parent</artifactId>
11     <version>0.5.0-SNAPSHOT</version>
12     <relativePath>../parent</relativePath>
13   </parent>
14
15   <artifactId>aaa-shiro-act</artifactId>
16   <name>ODL :: aaa :: ${project.artifactId}</name>
17   <packaging>bundle</packaging>
18
19   <dependencies>
20     <dependency>
21       <groupId>org.opendaylight.aaa</groupId>
22       <artifactId>aaa-shiro</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.osgi</groupId>
26       <artifactId>org.osgi.core</artifactId>
27     </dependency>
28
29     <dependency>
30       <groupId>commons-beanutils</groupId>
31       <artifactId>commons-beanutils</artifactId>
32       <version>1.8.3</version>
33     </dependency>
34
35     <!-- Testing Dependencies -->
36     <dependency>
37       <groupId>junit</groupId>
38       <artifactId>junit</artifactId>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.mockito</groupId>
43       <artifactId>mockito-core</artifactId>
44       <scope>test</scope>
45     </dependency>
46   </dependencies>
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.felix</groupId>
51         <artifactId>maven-bundle-plugin</artifactId>
52         <extensions>true</extensions>
53         <configuration>
54           <instructions>
55             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
56             <Bundle-Activator>org.opendaylight.aaa.shiroact.Activator</Bundle-Activator>
57           </instructions>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62 </project>