Re-apply MD-SAL Data Store For AAA
[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.3.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>aaa-h2-store</artifactId>
13     <version>0.3.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.aaa</groupId>
19             <artifactId>aaa-authn-api</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.aaa</groupId>
23             <artifactId>aaa-authn</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.slf4j</groupId>
27             <artifactId>slf4j-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.apache.felix</groupId>
31             <artifactId>org.apache.felix.dependencymanager</artifactId>
32             <scope>provided</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.mockito</groupId>
36             <artifactId>mockito-all</artifactId>
37             <scope>test</scope>
38         </dependency>
39
40         <!-- JDBC -->
41         <dependency>
42             <groupId>com.h2database</groupId>
43             <artifactId>h2</artifactId>
44         </dependency>
45         <!-- Testing Dependencies -->
46         <dependency>
47             <groupId>junit</groupId>
48             <artifactId>junit</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.slf4j</groupId>
53             <artifactId>slf4j-simple</artifactId>
54             <scope>test</scope>
55         </dependency>
56
57     </dependencies>
58
59     <build>
60         <plugins>
61             <plugin>
62                 <groupId>org.apache.felix</groupId>
63                 <artifactId>maven-bundle-plugin</artifactId>
64                 <extensions>true</extensions>
65                 <configuration>
66                     <instructions>
67                         <Import-Package>com.google.*,org.opendaylight.aaa.api.*,org.apache.felix.*,org.slf4j.*</Import-Package>
68                         <Export-Package>org.opendaylight.aaa.h2.*</Export-Package>
69                         <Private-Package>org.h2.*</Private-Package>
70                         <Embed-Dependency>h2</Embed-Dependency>
71                         <Bundle-Activator>org.opendaylight.aaa.h2.Activator</Bundle-Activator>
72                     </instructions>
73                 </configuration>
74             </plugin>
75         </plugins>
76     </build>
77 </project>