Merge "Move aaa-h2-store bundle to use blueprint"
[aaa.git] / aaa-h2-store / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.aaa</groupId>
7         <artifactId>aaa-parent</artifactId>
8         <version>0.5.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>aaa-h2-store</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.controller</groupId>
18             <artifactId>config-api</artifactId>
19             <version>${config.version}</version>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.controller</groupId>
23             <artifactId>sal-binding-config</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>sal-binding-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>sal-common-util</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.apache.commons</groupId>
35             <artifactId>commons-lang3</artifactId>
36         </dependency>
37
38         <dependency>
39             <groupId>org.opendaylight.aaa</groupId>
40             <artifactId>aaa-authn-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.aaa</groupId>
44             <artifactId>aaa-authn</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.slf4j</groupId>
48             <artifactId>slf4j-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.apache.felix</groupId>
52             <artifactId>org.apache.felix.dependencymanager</artifactId>
53             <scope>provided</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.mockito</groupId>
57             <artifactId>mockito-all</artifactId>
58             <scope>test</scope>
59         </dependency>
60
61         <!-- JDBC -->
62         <dependency>
63             <groupId>com.h2database</groupId>
64             <artifactId>h2</artifactId>
65         </dependency>
66         <!-- Testing Dependencies -->
67         <dependency>
68             <groupId>junit</groupId>
69             <artifactId>junit</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.slf4j</groupId>
74             <artifactId>slf4j-simple</artifactId>
75             <scope>test</scope>
76         </dependency>
77
78     </dependencies>
79     <build>
80         <plugins>
81             <plugin>
82                 <groupId>org.apache.felix</groupId>
83                 <artifactId>maven-bundle-plugin</artifactId>
84                 <version>${bundle.plugin.version}</version>
85                 <extensions>true</extensions>
86                 <configuration>
87                     <instructions>
88                         <Import-Package>com.google.*,org.opendaylight.aaa.api.*,org.apache.felix.*,org.slf4j.*,org.opendaylight.*,org.osgi.*,org.apache.commons.lang3</Import-Package>
89                         <Private-Package>org.h2.*</Private-Package>
90                         <Embed-Dependency>h2</Embed-Dependency>
91                     </instructions>
92                 </configuration>
93             </plugin>
94         </plugins>
95     </build>
96 </project>