Fix Md-SAL store configuration
[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.controller</groupId>
17         <artifactId>config-parent</artifactId>
18         <version>0.6.0-SNAPSHOT</version>
19         <relativePath/>
20     </parent>
21
22     <groupId>org.opendaylight.aaa</groupId>
23     <artifactId>aaa-authn-mdsal-store-impl</artifactId>
24     <version>0.5.0-SNAPSHOT</version>
25     <packaging>bundle</packaging>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.aaa</groupId>
31                 <artifactId>aaa-artifacts</artifactId>
32                 <version>${project.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39     <dependencies>
40         <dependency>
41           <groupId>org.opendaylight.controller</groupId>
42           <artifactId>sal-binding-config</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.aaa</groupId>
46             <artifactId>aaa-authn-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.aaa</groupId>
50             <artifactId>aaa-authn</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.aaa</groupId>
54             <artifactId>aaa-encrypt-service</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.aaa</groupId>
58             <artifactId>aaa-authn-mdsal-api</artifactId>
59         </dependency>
60
61         <!-- Test dependencies -->
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.mockito</groupId>
69             <artifactId>mockito-all</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73           <groupId>org.powermock</groupId>
74           <artifactId>powermock-api-mockito</artifactId>
75           <scope>test</scope>
76         </dependency>
77         <dependency>
78           <groupId>org.powermock</groupId>
79           <artifactId>powermock-module-junit4</artifactId>
80           <scope>test</scope>
81         </dependency>
82     </dependencies>
83
84     <build>
85         <plugins>
86           <plugin>
87             <groupId>org.codehaus.mojo</groupId>
88             <artifactId>build-helper-maven-plugin</artifactId>
89             <executions>
90               <execution>
91                 <id>attach-artifacts</id>
92                 <goals>
93                   <goal>attach-artifact</goal>
94                 </goals>
95                 <phase>package</phase>
96                 <configuration>
97                   <artifacts>
98                     <artifact>
99                       <file>${project.build.directory}/classes/initial/aaa-mdsal-config.xml</file>
100                       <type>xml</type>
101                       <classifier>config</classifier>
102                     </artifact>
103                   </artifacts>
104                 </configuration>
105               </execution>
106             </executions>
107           </plugin>
108         </plugins>
109     </build>
110
111 </project>