Split aaa-encryption-service api and impl
[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"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.aaa</groupId>
15     <artifactId>aaa-parent</artifactId>
16     <version>0.8.0-SNAPSHOT</version>
17     <relativePath>../../parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.aaa</groupId>
21   <artifactId>aaa-encrypt-service-impl</artifactId>
22   <name>ODL :: aaa :: ${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.aaa</groupId>
28       <artifactId>aaa-encrypt-service</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-binding-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-common-util</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.apache.felix</groupId>
40       <artifactId>org.apache.felix.dependencymanager</artifactId>
41       <scope>provided</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.osgi</groupId>
45       <artifactId>org.osgi.core</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.apache.commons</groupId>
49       <artifactId>commons-text</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.bouncycastle</groupId>
53       <artifactId>bcpkix-jdk15on</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.bouncycastle</groupId>
57       <artifactId>bcprov-jdk15on</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.apache.sshd</groupId>
61       <artifactId>sshd-core</artifactId>
62       <version>1.6.0</version>
63     </dependency>
64     <dependency>
65       <groupId>junit</groupId>
66       <artifactId>junit</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-core</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.powermock</groupId>
76       <artifactId>powermock-core</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.powermock</groupId>
81       <artifactId>powermock-module-junit4</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.powermock</groupId>
86       <artifactId>powermock-api-mockito</artifactId>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.powermock</groupId>
91       <artifactId>powermock-api-support</artifactId>
92       <scope>test</scope>
93     </dependency>
94   </dependencies>
95
96   <build>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.felix</groupId>
100         <artifactId>maven-bundle-plugin</artifactId>
101         <extensions>true</extensions>
102         <configuration>
103           <instructions>
104             <Export-Package/>
105           </instructions>
106         </configuration>
107       </plugin>
108       <plugin>
109         <groupId>org.codehaus.mojo</groupId>
110         <artifactId>build-helper-maven-plugin</artifactId>
111         <executions>
112           <execution>
113             <id>attach-artifacts</id>
114             <goals>
115               <goal>attach-artifact</goal>
116             </goals>
117             <phase>package</phase>
118             <configuration>
119               <artifacts>
120                 <artifact>
121                   <file>${project.build.directory}/classes/initial/aaa-encrypt-service-config.xml</file>
122                   <type>xml</type>
123                   <classifier>config</classifier>
124                 </artifact>
125               </artifacts>
126             </configuration>
127           </execution>
128         </executions>
129       </plugin>
130     </plugins>
131   </build>
132 </project>