Use Base64.encoder() in ODLKeyTool
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10   <parent>
11     <groupId>org.opendaylight.aaa</groupId>
12     <artifactId>aaa-parent</artifactId>
13     <version>0.14.4-SNAPSHOT</version>
14     <relativePath>../parent</relativePath>
15   </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.aaa</groupId>
19   <artifactId>aaa-cert</artifactId>
20   <name>ODL :: aaa :: ${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>org.opendaylight.aaa</groupId>
26       <artifactId>aaa-encrypt-service</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal</groupId>
30       <artifactId>mdsal-binding-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.apache.commons</groupId>
34       <artifactId>commons-lang3</artifactId>
35     </dependency>
36
37     <!-- Bouncy Castle dependency -->
38     <dependency>
39       <groupId>org.bouncycastle</groupId>
40       <artifactId>bcprov-jdk15on</artifactId>
41     </dependency>
42   </dependencies>
43
44   <build>
45     <plugins>
46       <plugin>
47         <groupId>org.apache.felix</groupId>
48         <artifactId>maven-bundle-plugin</artifactId>
49         <extensions>true</extensions>
50         <configuration>
51           <instructions>
52             <Export-Package>
53               org.opendaylight.aaa.cert.api.*,
54               org.opendaylight.aaa.cert.impl.*,
55               org.opendaylight.yang.gen.v1.urn.opendaylight.yang.aaa.cert.rev151126.*
56             </Export-Package>
57           </instructions>
58         </configuration>
59       </plugin>
60       <plugin>
61         <groupId>org.codehaus.mojo</groupId>
62         <artifactId>build-helper-maven-plugin</artifactId>
63         <executions>
64           <execution>
65             <id>attach-artifacts</id>
66             <goals>
67               <goal>attach-artifact</goal>
68             </goals>
69             <phase>package</phase>
70             <configuration>
71               <artifacts>
72                 <artifact>
73                   <file>${project.build.directory}/classes/initial/aaa-cert-config.xml</file>
74                   <type>xml</type>
75                   <classifier>config</classifier>
76                 </artifact>
77               </artifacts>
78             </configuration>
79           </execution>
80         </executions>
81       </plugin>
82     </plugins>
83   </build>
84 </project>