Bump versions to 0.19.4-SNAPSHOT
[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.19.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>com.github.spotbugs</groupId>
26       <artifactId>spotbugs-annotations</artifactId>
27       <optional>true</optional>
28     </dependency>
29     <dependency>
30       <groupId>org.apache.commons</groupId>
31       <artifactId>commons-lang3</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.bouncycastle</groupId>
35       <artifactId>bcpkix-jdk18on</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.bouncycastle</groupId>
39       <artifactId>bcprov-jdk18on</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.aaa</groupId>
43       <artifactId>aaa-encrypt-service</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.mdsal</groupId>
47       <artifactId>mdsal-binding-api</artifactId>
48     </dependency>
49   </dependencies>
50
51   <build>
52     <plugins>
53       <plugin>
54         <groupId>org.apache.felix</groupId>
55         <artifactId>maven-bundle-plugin</artifactId>
56         <extensions>true</extensions>
57         <configuration>
58           <instructions>
59             <Export-Package>
60               org.opendaylight.aaa.cert.api.*,
61               org.opendaylight.aaa.cert.impl.*,
62               org.opendaylight.yang.gen.v1.urn.opendaylight.yang.aaa.cert.rev151126.*
63             </Export-Package>
64             <Provide-Capability>
65               osgi.service;objectClass:List&lt;String&gt;="org.opendaylight.aaa.cert.api.ICertificateManager";uses:="org.opendaylight.aaa.cert.api"
66             </Provide-Capability>
67           </instructions>
68         </configuration>
69       </plugin>
70       <plugin>
71         <groupId>org.codehaus.mojo</groupId>
72         <artifactId>build-helper-maven-plugin</artifactId>
73         <executions>
74           <execution>
75             <id>attach-artifacts</id>
76             <goals>
77               <goal>attach-artifact</goal>
78             </goals>
79             <phase>package</phase>
80             <configuration>
81               <artifacts>
82                 <artifact>
83                   <file>${project.build.directory}/classes/initial/aaa-cert-config.xml</file>
84                   <type>xml</type>
85                   <classifier>config</classifier>
86                 </artifact>
87               </artifacts>
88             </configuration>
89           </execution>
90         </executions>
91       </plugin>
92     </plugins>
93   </build>
94 </project>