Use odlparent-lite for aggregator
[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.4.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>org.slf4j</groupId>
30       <artifactId>slf4j-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>commons-beanutils</groupId>
34       <artifactId>commons-beanutils</artifactId>
35       <version>1.8.3</version>
36     </dependency>
37
38     <!-- Testing Dependencies -->
39     <dependency>
40       <groupId>junit</groupId>
41       <artifactId>junit</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.mockito</groupId>
46       <artifactId>mockito-all</artifactId>
47       <scope>test</scope>
48     </dependency>
49   </dependencies>
50   <build>
51     <pluginManagement>
52       <plugins>
53         <plugin>
54           <groupId>org.apache.felix</groupId>
55           <artifactId>maven-bundle-plugin</artifactId>
56           <version>${bundle.plugin.version}</version>
57           <extensions>true</extensions>
58           <configuration>
59             <instructions>
60               <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
61             </instructions>
62             <manifestLocation>${project.basedir}/META-INF</manifestLocation>
63           </configuration>
64         </plugin>
65       </plugins>
66     </pluginManagement>
67     <plugins>
68       <plugin>
69         <groupId>org.apache.felix</groupId>
70         <artifactId>maven-bundle-plugin</artifactId>
71         <extensions>true</extensions>
72         <configuration>
73           <instructions>
74             <Bundle-Activator>org.opendaylight.aaa.shiroact.Activator</Bundle-Activator>
75           </instructions>
76         </configuration>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.maven.plugins</groupId>
80         <artifactId>maven-jar-plugin</artifactId>
81       </plugin>
82     </plugins>
83   </build>
84 </project>