Karaf 4 for appc-config
[appc.git] / appc-config / appc-config-adaptor / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Copyright (C) 2017 Amdocs
9   =============================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21
22   ============LICENSE_END=========================================================
23   -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0"
25          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27
28     <modelVersion>4.0.0</modelVersion>
29         <parent>
30                 <groupId>org.onap.appc.parent</groupId>
31                 <artifactId>binding-parent</artifactId>
32                 <version>1.4.0-SNAPSHOT</version>
33                 <relativePath />
34         </parent>
35         <groupId>org.onap.appc</groupId>
36
37     <artifactId>appc-config-adaptor-provider</artifactId>
38     <packaging>bundle</packaging>
39     <name>APPC Config Component Adaptor - Provider</name>
40     <url>http://maven.apache.org</url>
41
42     <properties>
43         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44         <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
45     </properties>
46
47     <dependencies>
48         <dependency>
49             <groupId>junit</groupId>
50             <artifactId>junit</artifactId>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.onap.ccsdk.sli.core</groupId>
55             <artifactId>sli-common</artifactId>
56             <scope>compile</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.onap.ccsdk.sli.core</groupId>
60             <artifactId>sli-provider</artifactId>
61             <scope>compile</scope>
62         </dependency>
63         <dependency>
64                         <groupId>org.powermock</groupId>
65                         <artifactId>powermock-api-mockito</artifactId>
66                         <scope>test</scope>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.mockito</groupId>
70                         <artifactId>mockito-core</artifactId>
71                         <scope>test</scope>
72                 </dependency>
73
74         <dependency>
75             <groupId>com.att.eelf</groupId>
76             <artifactId>eelf-core</artifactId>
77         </dependency>
78
79         <dependency>
80             <groupId>com.jcraft</groupId>
81             <artifactId>jsch</artifactId>
82             <version>0.1.52</version>
83         </dependency>
84
85         <dependency>
86             <groupId>jdom</groupId>
87             <artifactId>jdom</artifactId>
88             <version>1.1</version>
89         </dependency>
90
91         <dependency>
92             <groupId>xerces</groupId>
93             <artifactId>xerces</artifactId>
94             <version>2.4.0</version>
95             <scope>provided</scope>
96         </dependency>
97         <dependency>
98             <groupId>com.sun.jersey</groupId>
99             <artifactId>jersey-client</artifactId>
100             <version>1.17</version>
101             <scope>provided</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.jasypt</groupId>
105             <artifactId>jasypt</artifactId>
106             <version>1.9.2</version>
107             <scope>compile</scope>
108         </dependency>
109         <dependency>
110             <groupId>commons-io</groupId>
111             <artifactId>commons-io</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.onap.appc</groupId>
116             <artifactId>appc-common</artifactId>
117             <version>${project.version}</version>
118         </dependency>
119     </dependencies>
120
121     <build>
122         <plugins>
123             <plugin>
124                 <groupId>org.apache.felix</groupId>
125                 <artifactId>maven-bundle-plugin</artifactId>
126                 <extensions>true</extensions>
127                 <configuration>
128                     <instructions>
129                         <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName>
130                         <Bundle-Activator>org.onap.appc.ccadaptor.CCAActivator</Bundle-Activator>
131                         <Export-Package>org.onap.appc.adaptor</Export-Package>
132                         <Import-Package>*;resolution:=optional</Import-Package>
133                         <Embed-Dependency>jasypt,jsch,eelf-core</Embed-Dependency>
134                         <DynamicImport-Package>*</DynamicImport-Package>
135                     </instructions>
136                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
137                 </configuration>
138             </plugin>
139         </plugins>
140     </build>
141 </project>