Merge "Move aaa-h2-store bundle to use blueprint"
[aaa.git] / aaa-authn-mdsal-store / aaa-authn-mdsal-store-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   ~
9   -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.aaa</groupId>
17         <artifactId>aaa-parent</artifactId>
18         <version>0.5.0-SNAPSHOT</version>
19         <relativePath>../../parent</relativePath>
20     </parent>
21
22     <artifactId>aaa-authn-mdsal-store-impl</artifactId>
23     <packaging>bundle</packaging>
24
25     <dependencies>
26         <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>sal-binding-util</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>sal-common-util</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-data-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>commons-codec</groupId>
40             <artifactId>commons-codec</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>sal-binding-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>config-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>sal-binding-config</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.aaa</groupId>
56             <artifactId>aaa-authn-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.aaa</groupId>
60             <artifactId>aaa-authn</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.aaa</groupId>
64             <artifactId>aaa-encrypt-service</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller</groupId>
68             <artifactId>sal-core-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.aaa</groupId>
72             <artifactId>aaa-authn-mdsal-api</artifactId>
73         </dependency>
74
75         <!-- Test dependencies -->
76         <dependency>
77             <groupId>junit</groupId>
78             <artifactId>junit</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.mockito</groupId>
83             <artifactId>mockito-all</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.slf4j</groupId>
88             <artifactId>slf4j-simple</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92           <groupId>org.powermock</groupId>
93           <artifactId>powermock-api-mockito</artifactId>
94           <scope>test</scope>
95         </dependency>
96         <dependency>
97           <groupId>org.powermock</groupId>
98           <artifactId>powermock-module-junit4</artifactId>
99           <scope>test</scope>
100         </dependency>
101     </dependencies>
102
103     <build>
104         <plugins>
105             <plugin>
106                 <groupId>org.apache.felix</groupId>
107                 <artifactId>maven-bundle-plugin</artifactId>
108                 <extensions>true</extensions>
109                 <configuration>
110                     <instructions>
111                         <!-- <Bundle-Activator>/Bundle-Activator> -->
112                         <Export-Package>org.opendaylight.yang.gen.v1.config.aaa.authn.mdsal.store.*
113                         </Export-Package>
114                     </instructions>
115                 </configuration>
116                 <!-- <configuration> <Export-Package> </Export-Package> </configuration> -->
117             </plugin>
118             <plugin>
119                 <groupId>org.opendaylight.yangtools</groupId>
120                 <artifactId>yang-maven-plugin</artifactId>
121                 <version>${yangtools.version}</version>
122                 <executions>
123                     <execution>
124                         <id>config</id>
125                         <goals>
126                             <goal>generate-sources</goal>
127                         </goals>
128                         <configuration>
129                             <codeGenerators>
130                                 <generator>
131                                     <codeGeneratorClass>
132                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
133                                     </codeGeneratorClass>
134                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
135                                     <additionalConfiguration>
136                                         <namespaceToPackage1>
137                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
138                                         </namespaceToPackage1>
139                                     </additionalConfiguration>
140                                 </generator>
141                                 <generator>
142                                     <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
143                                     <outputBaseDir>${salGeneratorPath}</outputBaseDir>
144                                 </generator>
145                             </codeGenerators>
146                             <inspectDependencies>true</inspectDependencies>
147                         </configuration>
148                     </execution>
149                 </executions>
150                 <dependencies>
151                     <dependency>
152                         <groupId>org.opendaylight.controller</groupId>
153                         <artifactId>yang-jmx-generator-plugin</artifactId>
154                         <version>${config.version}</version>
155                     </dependency>
156                     <dependency>
157                         <groupId>org.opendaylight.mdsal</groupId>
158                         <artifactId>maven-sal-api-gen-plugin</artifactId>
159                         <version>${mdsal.model.version}</version>
160                     </dependency>
161                 </dependencies>
162             </plugin>
163         </plugins>
164     </build>
165
166
167 </project>