Merge "introduce WebContextSecurer service API"
[aaa.git] / aaa-cert / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015, 2017 Inocybe Technology. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.aaa</groupId>
13     <artifactId>aaa-parent</artifactId>
14     <version>0.8.0-SNAPSHOT</version>
15     <relativePath>../parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.aaa</groupId>
20   <artifactId>aaa-cert</artifactId>
21   <version>0.8.0-SNAPSHOT</version>
22   <name>ODL :: aaa :: ${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.aaa</groupId>
28       <artifactId>aaa-encrypt-service</artifactId>
29     </dependency>
30
31     <!-- Bouncy Castle dependency -->
32     <dependency>
33       <groupId>org.bouncycastle</groupId>
34       <artifactId>bcprov-jdk15on</artifactId>
35     </dependency>
36
37     <!-- Testing Dependencies -->
38     <dependency>
39       <groupId>junit</groupId>
40       <artifactId>junit</artifactId>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.mockito</groupId>
45       <artifactId>mockito-core</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.powermock</groupId>
50       <artifactId>powermock-core</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.powermock</groupId>
55       <artifactId>powermock-module-junit4</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.powermock</groupId>
60       <artifactId>powermock-api-mockito</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.powermock</groupId>
65       <artifactId>powermock-api-support</artifactId>
66       <scope>test</scope>
67     </dependency>
68   </dependencies>
69
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.felix</groupId>
74         <artifactId>maven-bundle-plugin</artifactId>
75         <extensions>true</extensions>
76         <configuration>
77           <instructions>
78             <Export-Package>
79               org.opendaylight.aaa.cert.api.*,
80               org.opendaylight.aaa.cert.impl.*,
81               org.opendaylight.yang.gen.v1.urn.opendaylight.yang.aaa.cert.rev151126.*
82             </Export-Package>
83           </instructions>
84         </configuration>
85       </plugin>
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-cert-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 </project>