Changed to unmaintained
[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" 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">
25
26     <modelVersion>4.0.0</modelVersion>
27         <parent>
28                 <groupId>org.onap.appc.parent</groupId>
29                 <artifactId>binding-parent</artifactId>
30                 <version>2.7.2</version>
31                 <relativePath/>
32         </parent>
33         <groupId>org.onap.appc</groupId>
34
35     <artifactId>appc-config-adaptor-provider</artifactId>
36     <packaging>bundle</packaging>
37     <name>APPC Config Component Adaptor - Provider</name>
38     <url>http://maven.apache.org</url>
39
40     <properties>
41         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42         <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
43     </properties>
44
45     <dependencies>
46         <dependency>
47             <groupId>junit</groupId>
48             <artifactId>junit</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.onap.ccsdk.sli.core</groupId>
53             <artifactId>sli-common</artifactId>
54             <scope>compile</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.onap.ccsdk.sli.core</groupId>
58             <artifactId>sli-provider</artifactId>
59             <scope>compile</scope>
60         </dependency>
61         <dependency>
62                         <groupId>org.powermock</groupId>
63                         <artifactId>powermock-api-mockito</artifactId>
64                         <scope>test</scope>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.mockito</groupId>
68                         <artifactId>mockito-core</artifactId>
69                         <scope>test</scope>
70                 </dependency>
71         <dependency>
72          <groupId>ch.qos.logback</groupId>
73          <artifactId>logback-classic</artifactId>
74          <version>${logback.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>com.att.eelf</groupId>
78             <artifactId>eelf-core</artifactId>
79             <exclusions>
80                 <exclusion>
81                     <groupId>ch.qos.logback</groupId>
82                     <artifactId>logback-classic</artifactId>
83                 </exclusion>
84             </exclusions>
85         </dependency>
86
87         <dependency>
88             <groupId>com.jcraft</groupId>
89             <artifactId>jsch</artifactId>
90             <version>0.1.52</version>
91         </dependency>
92
93         <dependency>
94             <groupId>jdom</groupId>
95             <artifactId>jdom</artifactId>
96             <version>1.1</version>
97         </dependency>
98
99         <dependency>
100             <groupId>xerces</groupId>
101             <artifactId>xerces</artifactId>
102             <version>2.4.0</version>
103             <scope>provided</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.glassfish.jersey.core</groupId>
107             <artifactId>jersey-client</artifactId>
108             <scope>provided</scope>
109         </dependency>
110         
111         <dependency>
112             <groupId>org.glassfish.jersey.security</groupId>
113             <artifactId>oauth1-client</artifactId>
114         </dependency>
115
116         <dependency>
117             <groupId>org.jasypt</groupId>
118             <artifactId>jasypt</artifactId>
119             <version>1.9.2</version>
120             <scope>compile</scope>
121         </dependency>
122         <dependency>
123             <groupId>commons-io</groupId>
124             <artifactId>commons-io</artifactId>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.onap.appc</groupId>
129             <artifactId>appc-common-bundle</artifactId>
130             <version>${project.version}</version>
131         </dependency>
132         <dependency>
133             <groupId>org.osgi</groupId>
134             <artifactId>org.osgi.core</artifactId>
135             <scope>provided</scope>
136         </dependency>
137     </dependencies>
138
139     <build>
140         <plugins>
141             <plugin>
142                 <groupId>org.apache.felix</groupId>
143                 <artifactId>maven-bundle-plugin</artifactId>
144                 <extensions>true</extensions>
145                 <configuration>
146                     <instructions>
147                         <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName>
148                         <Bundle-Activator>org.onap.appc.ccadaptor.CCAActivator</Bundle-Activator>
149                         <Export-Package>org.onap.appc.adaptor</Export-Package>
150                         <Import-Package>*;resolution:=optional</Import-Package>
151                         <Embed-Dependency>jasypt,jsch,eelf-core</Embed-Dependency>
152                         <DynamicImport-Package>*</DynamicImport-Package>
153                     </instructions>
154                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
155                 </configuration>
156             </plugin>
157         </plugins>
158     </build>
159     <version>1.8.0-SNAPSHOT</version>
160 </project>