bdc7f78a2b72c3f72a17eaf86ba03123ac73a8cf
[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.3.0-SNAPSHOT</version>
19         <relativePath>../../parent</relativePath>
20     </parent>
21
22     <artifactId>aaa-authn-mdsal-store-impl</artifactId>
23     <version>0.3.0-SNAPSHOT</version>
24     <packaging>bundle</packaging>
25
26     <dependencies>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>sal-binding-util</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>sal-common-util</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-data-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>commons-codec</groupId>
41             <artifactId>commons-codec</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>sal-binding-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>config-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>sal-binding-config</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.aaa</groupId>
57             <artifactId>aaa-authn-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.aaa</groupId>
61             <artifactId>aaa-authn</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller</groupId>
65             <artifactId>sal-core-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.aaa</groupId>
69             <artifactId>aaa-authn-mdsal-api</artifactId>
70         </dependency>
71
72         <!-- Test dependencies -->
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.mockito</groupId>
80             <artifactId>mockito-all</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.slf4j</groupId>
85             <artifactId>slf4j-simple</artifactId>
86             <scope>test</scope>
87         </dependency>
88     </dependencies>
89
90     <build>
91         <plugins>
92             <plugin>
93                 <groupId>org.apache.felix</groupId>
94                 <artifactId>maven-bundle-plugin</artifactId>
95                 <extensions>true</extensions>
96                 <configuration>
97                     <instructions>
98                         <!-- <Bundle-Activator>/Bundle-Activator> -->
99                         <Export-Package>org.opendaylight.yang.gen.v1.config.aaa.authn.mdsal.store.*
100                         </Export-Package>
101                     </instructions>
102                 </configuration>
103                 <!-- <configuration> <Export-Package> </Export-Package> </configuration> -->
104             </plugin>
105             <plugin>
106                 <groupId>org.opendaylight.yangtools</groupId>
107                 <artifactId>yang-maven-plugin</artifactId>
108                 <version>${yangtools.version}</version>
109                 <executions>
110                     <execution>
111                         <id>config</id>
112                         <goals>
113                             <goal>generate-sources</goal>
114                         </goals>
115                         <configuration>
116                             <codeGenerators>
117                                 <generator>
118                                     <codeGeneratorClass>
119                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
120                                     </codeGeneratorClass>
121                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
122                                     <additionalConfiguration>
123                                         <namespaceToPackage1>
124                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
125                                         </namespaceToPackage1>
126                                     </additionalConfiguration>
127                                 </generator>
128                                 <generator>
129                                     <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
130                                     <outputBaseDir>${salGeneratorPath}</outputBaseDir>
131                                 </generator>
132                             </codeGenerators>
133                             <inspectDependencies>true</inspectDependencies>
134                         </configuration>
135                     </execution>
136                 </executions>
137                 <dependencies>
138                     <dependency>
139                         <groupId>org.opendaylight.controller</groupId>
140                         <artifactId>yang-jmx-generator-plugin</artifactId>
141                         <version>${config.version}</version>
142                     </dependency>
143                     <dependency>
144                         <groupId>org.opendaylight.mdsal</groupId>
145                         <artifactId>maven-sal-api-gen-plugin</artifactId>
146                         <version>${yangtools.version}</version>
147                     </dependency>
148                 </dependencies>
149             </plugin>
150         </plugins>
151     </build>
152
153
154 </project>