Eliminate dependencies on slf4j-{api,simple}
[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   <packaging>bundle</packaging>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.aaa</groupId>
21       <artifactId>aaa-shiro</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.apache.felix</groupId>
25       <artifactId>org.apache.felix.dependencymanager</artifactId>
26     </dependency>
27
28     <dependency>
29       <groupId>commons-beanutils</groupId>
30       <artifactId>commons-beanutils</artifactId>
31       <version>1.8.3</version>
32     </dependency>
33
34     <!-- Testing Dependencies -->
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <scope>test</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.mockito</groupId>
42       <artifactId>mockito-all</artifactId>
43       <scope>test</scope>
44     </dependency>
45   </dependencies>
46   <build>
47     <plugins>
48       <plugin>
49         <groupId>org.apache.felix</groupId>
50         <artifactId>maven-bundle-plugin</artifactId>
51         <extensions>true</extensions>
52         <configuration>
53           <instructions>
54             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
55             <Bundle-Activator>org.opendaylight.aaa.shiroact.Activator</Bundle-Activator>
56           </instructions>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61 </project>