Release appc
[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-2019 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>2.6.1</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         <dependency>
74          <groupId>ch.qos.logback</groupId>
75          <artifactId>logback-classic</artifactId>
76          <version>${logback.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>com.att.eelf</groupId>
80             <artifactId>eelf-core</artifactId>
81             <exclusions>
82                 <exclusion>
83                     <groupId>ch.qos.logback</groupId>
84                     <artifactId>logback-classic</artifactId>
85                 </exclusion>
86             </exclusions>
87         </dependency>
88
89         <dependency>
90             <groupId>com.jcraft</groupId>
91             <artifactId>jsch</artifactId>
92             <version>0.1.52</version>
93         </dependency>
94
95         <dependency>
96             <groupId>jdom</groupId>
97             <artifactId>jdom</artifactId>
98             <version>1.1</version>
99         </dependency>
100
101         <dependency>
102             <groupId>xerces</groupId>
103             <artifactId>xerces</artifactId>
104             <version>2.4.0</version>
105             <scope>provided</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.glassfish.jersey.core</groupId>
109             <artifactId>jersey-client</artifactId>
110             <scope>provided</scope>
111         </dependency>
112         
113         <dependency>
114             <groupId>org.glassfish.jersey.security</groupId>
115             <artifactId>oauth1-client</artifactId>
116         </dependency>
117
118         <dependency>
119             <groupId>org.jasypt</groupId>
120             <artifactId>jasypt</artifactId>
121             <version>1.9.2</version>
122             <scope>compile</scope>
123         </dependency>
124         <dependency>
125             <groupId>commons-io</groupId>
126             <artifactId>commons-io</artifactId>
127             <scope>test</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.onap.appc</groupId>
131             <artifactId>appc-common-bundle</artifactId>
132             <version>${project.version}</version>
133         </dependency>
134         <dependency>
135             <groupId>org.osgi</groupId>
136             <artifactId>org.osgi.core</artifactId>
137             <scope>provided</scope>
138         </dependency>
139     </dependencies>
140
141     <build>
142         <plugins>
143             <plugin>
144                 <groupId>org.apache.felix</groupId>
145                 <artifactId>maven-bundle-plugin</artifactId>
146                 <extensions>true</extensions>
147                 <configuration>
148                     <instructions>
149                         <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName>
150                         <Bundle-Activator>org.onap.appc.ccadaptor.CCAActivator</Bundle-Activator>
151                         <Export-Package>org.onap.appc.adaptor</Export-Package>
152                         <Import-Package>*;resolution:=optional</Import-Package>
153                         <Embed-Dependency>jasypt,jsch,eelf-core</Embed-Dependency>
154                         <DynamicImport-Package>*</DynamicImport-Package>
155                     </instructions>
156                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
157                 </configuration>
158             </plugin>
159         </plugins>
160     </build>
161     <version>1.6.3</version>
162 </project>