Require jaxb-api
[aaa.git] / aaa-encrypt-service / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © Inocybe Technologies and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.aaa</groupId>
14     <artifactId>aaa-parent</artifactId>
15     <version>0.9.0-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.aaa</groupId>
20   <artifactId>aaa-encrypt-service-impl</artifactId>
21   <name>ODL :: aaa :: ${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.aaa</groupId>
27       <artifactId>aaa-encrypt-service</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.mdsal</groupId>
31       <artifactId>mdsal-binding-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.apache.felix</groupId>
35       <artifactId>org.apache.felix.dependencymanager</artifactId>
36       <scope>provided</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.osgi</groupId>
40       <artifactId>org.osgi.core</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.commons</groupId>
44       <artifactId>commons-text</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.bouncycastle</groupId>
48       <artifactId>bcpkix-jdk15on</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.bouncycastle</groupId>
52       <artifactId>bcprov-jdk15on</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.apache.sshd</groupId>
56       <artifactId>sshd-core</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>javax.xml.bind</groupId>
60       <artifactId>jaxb-api</artifactId>
61       <!-- FIXME: eliminate version/exclusions with odlparent-4.0.3 -->
62       <version>2.2.1</version>
63       <exclusions>
64         <exclusion>
65           <!-- Provided by JDK -->
66           <groupId>javax.xml.stream</groupId>
67           <artifactId>stax-api</artifactId>
68         </exclusion>
69       </exclusions>
70     </dependency>
71     <dependency>
72       <groupId>junit</groupId>
73       <artifactId>junit</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.mockito</groupId>
78       <artifactId>mockito-core</artifactId>
79       <version>2.8.9</version>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.javassist</groupId>
84       <artifactId>javassist</artifactId>
85       <version>3.21.0-GA</version>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.powermock</groupId>
90       <artifactId>powermock-core</artifactId>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.powermock</groupId>
95       <artifactId>powermock-module-junit4</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.powermock</groupId>
100       <artifactId>powermock-api-mockito2</artifactId>
101       <version>1.7.4</version>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.powermock</groupId>
106       <artifactId>powermock-api-support</artifactId>
107       <scope>test</scope>
108     </dependency>
109   </dependencies>
110
111   <build>
112     <plugins>
113       <plugin>
114         <groupId>org.apache.felix</groupId>
115         <artifactId>maven-bundle-plugin</artifactId>
116         <extensions>true</extensions>
117         <configuration>
118           <instructions>
119             <Export-Package/>
120           </instructions>
121         </configuration>
122       </plugin>
123       <plugin>
124         <groupId>org.codehaus.mojo</groupId>
125         <artifactId>build-helper-maven-plugin</artifactId>
126         <executions>
127           <execution>
128             <id>attach-artifacts</id>
129             <goals>
130               <goal>attach-artifact</goal>
131             </goals>
132             <phase>package</phase>
133             <configuration>
134               <artifacts>
135                 <artifact>
136                   <file>${project.build.directory}/classes/initial/aaa-encrypt-service-config.xml</file>
137                   <type>xml</type>
138                   <classifier>config</classifier>
139                 </artifact>
140               </artifacts>
141             </configuration>
142           </execution>
143         </executions>
144       </plugin>
145     </plugins>
146   </build>
147 </project>