Merge "Integrate MRI projects for Neon"
[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.9.0-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.controller</groupId>
30       <artifactId>sal-binding-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.apache.commons</groupId>
34       <artifactId>commons-text</artifactId>
35     </dependency>
36
37     <!-- Bouncy Castle dependency -->
38     <dependency>
39       <groupId>org.bouncycastle</groupId>
40       <artifactId>bcprov-jdk15on</artifactId>
41     </dependency>
42
43     <!-- Testing Dependencies -->
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-core</artifactId>
52       <version>2.8.9</version>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-core</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.powermock</groupId>
62       <artifactId>powermock-module-junit4</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.javassist</groupId>
67       <artifactId>javassist</artifactId>
68       <version>3.21.0-GA</version>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.powermock</groupId>
73       <artifactId>powermock-api-mockito2</artifactId>
74       <version>1.7.4</version>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.powermock</groupId>
79       <artifactId>powermock-api-support</artifactId>
80       <scope>test</scope>
81     </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.felix</groupId>
88         <artifactId>maven-bundle-plugin</artifactId>
89         <extensions>true</extensions>
90         <configuration>
91           <instructions>
92             <Export-Package>
93               org.opendaylight.aaa.cert.api.*,
94               org.opendaylight.aaa.cert.impl.*,
95               org.opendaylight.yang.gen.v1.urn.opendaylight.yang.aaa.cert.rev151126.*
96             </Export-Package>
97           </instructions>
98         </configuration>
99       </plugin>
100       <plugin>
101         <groupId>org.codehaus.mojo</groupId>
102         <artifactId>build-helper-maven-plugin</artifactId>
103         <executions>
104           <execution>
105             <id>attach-artifacts</id>
106             <goals>
107               <goal>attach-artifact</goal>
108             </goals>
109             <phase>package</phase>
110             <configuration>
111               <artifacts>
112                 <artifact>
113                   <file>${project.build.directory}/classes/initial/aaa-cert-config.xml</file>
114                   <type>xml</type>
115                   <classifier>config</classifier>
116                 </artifact>
117               </artifacts>
118             </configuration>
119           </execution>
120         </executions>
121       </plugin>
122     </plugins>
123   </build>
124 </project>