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