Add missing <name> fields for pom.xml files
[aaa.git] / aaa-cert / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 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.controller</groupId>
12     <artifactId>config-parent</artifactId>
13     <version>0.6.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.aaa</groupId>
19   <artifactId>aaa-cert</artifactId>
20   <version>0.5.0-SNAPSHOT</version>
21   <name>ODL :: aaa :: ${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencyManagement>
25     <dependencies>
26       <dependency>
27         <groupId>org.opendaylight.aaa</groupId>
28         <artifactId>aaa-artifacts</artifactId>
29         <version>${project.version}</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35
36   <dependencies>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-binding-config</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.aaa</groupId>
43       <artifactId>aaa-encrypt-service</artifactId>
44     </dependency>
45
46     <!-- Bouncy Castle dependency -->
47     <dependency>
48         <groupId>org.bouncycastle</groupId>
49         <artifactId>bcprov-jdk15on</artifactId>
50     </dependency>
51
52     <!-- Testing Dependencies -->
53     <dependency>
54       <groupId>junit</groupId>
55       <artifactId>junit</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.mockito</groupId>
60       <artifactId>mockito-core</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.powermock</groupId>
65       <artifactId>powermock-core</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.powermock</groupId>
70       <artifactId>powermock-module-junit4</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.powermock</groupId>
75       <artifactId>powermock-api-mockito</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.powermock</groupId>
80       <artifactId>powermock-api-support</artifactId>
81       <scope>test</scope>
82     </dependency>
83   </dependencies>
84
85   <build>
86     <plugins>
87       <plugin>
88         <groupId>org.apache.felix</groupId>
89         <artifactId>maven-bundle-plugin</artifactId>
90         <extensions>true</extensions>
91         <configuration>
92           <instructions>
93             <Export-Package>
94               org.opendaylight.aaa.cert.api.*,
95               org.opendaylight.aaa.cert.impl.*,
96               org.opendaylight.yang.gen.v1.urn.opendaylight.yang.aaa.cert.rev151126.*
97             </Export-Package>
98           </instructions>
99         </configuration>
100       </plugin>
101       <plugin>
102         <groupId>org.codehaus.mojo</groupId>
103         <artifactId>build-helper-maven-plugin</artifactId>
104         <executions>
105           <execution>
106             <id>attach-artifacts</id>
107             <goals>
108               <goal>attach-artifact</goal>
109             </goals>
110             <phase>package</phase>
111             <configuration>
112               <artifacts>
113                 <artifact>
114                   <file>${project.build.directory}/classes/initial/aaa-cert-config.xml</file>
115                   <type>xml</type>
116                   <classifier>config</classifier>
117                 </artifact>
118               </artifacts>
119             </configuration>
120           </execution>
121         </executions>
122       </plugin>
123     </plugins>
124   </build>
125 </project>