blob: efa33fdc838770f6f05b9118ac03fcabbaf9a64a [file] [log] [blame]
Skip Wonnell1ec4bf92017-08-15 20:42:44 -05001<?xml version="1.0" encoding="UTF-8"?>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -04002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Brady13c03532019-02-22 13:37:19 -08006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -04007 ================================================================================
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
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050013
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040014 http://www.apache.org/licenses/LICENSE-2.0
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050015
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040016 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.
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050021
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040022 ============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">
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050027
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040028 <modelVersion>4.0.0</modelVersion>
Patrick Bradyb49dd122018-08-10 15:30:58 -070029 <parent>
30 <groupId>org.onap.appc.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Patrick Bradyd4c14b12019-05-08 12:57:09 -070032 <version>2.5.0</version>
Patrick Bradyb49dd122018-08-10 15:30:58 -070033 <relativePath />
34 </parent>
Patrick Brady07567592017-12-13 11:09:30 -080035 <groupId>org.onap.appc</groupId>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050036
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040037 <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>
Patrick Brady76706002017-09-04 21:37:25 -070054 <groupId>org.onap.ccsdk.sli.core</groupId>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040055 <artifactId>sli-common</artifactId>
56 <scope>compile</scope>
57 </dependency>
58 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070059 <groupId>org.onap.ccsdk.sli.core</groupId>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040060 <artifactId>sli-provider</artifactId>
61 <scope>compile</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.powermock</groupId>
65 <artifactId>powermock-api-mockito</artifactId>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050066 <scope>test</scope>
67 </dependency>
68 <dependency>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040069 <groupId>org.mockito</groupId>
70 <artifactId>mockito-core</artifactId>
71 <scope>test</scope>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050072 </dependency>
Patrick Brady28da5022018-09-17 12:52:55 -070073 <dependency>
74 <groupId>ch.qos.logback</groupId>
75 <artifactId>logback-classic</artifactId>
76 <version>${logback.version}</version>
77 </dependency>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040078 <dependency>
79 <groupId>com.att.eelf</groupId>
80 <artifactId>eelf-core</artifactId>
Patrick Brady28da5022018-09-17 12:52:55 -070081 <exclusions>
82 <exclusion>
83 <groupId>ch.qos.logback</groupId>
84 <artifactId>logback-classic</artifactId>
85 </exclusion>
86 </exclusions>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040087 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050088
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040089 <dependency>
90 <groupId>com.jcraft</groupId>
91 <artifactId>jsch</artifactId>
92 <version>0.1.52</version>
93 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050094
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040095 <dependency>
96 <groupId>jdom</groupId>
97 <artifactId>jdom</artifactId>
98 <version>1.1</version>
99 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -0500100
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400101 <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>com.sun.jersey</groupId>
109 <artifactId>jersey-client</artifactId>
110 <version>1.17</version>
111 <scope>provided</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.jasypt</groupId>
115 <artifactId>jasypt</artifactId>
116 <version>1.9.2</version>
117 <scope>compile</scope>
118 </dependency>
Tomek Kaminski31b71122018-01-26 13:49:50 +0100119 <dependency>
120 <groupId>commons-io</groupId>
121 <artifactId>commons-io</artifactId>
122 <scope>test</scope>
123 </dependency>
Tomek Kaminski8d0eb7f2018-02-22 16:51:03 +0100124 <dependency>
125 <groupId>org.onap.appc</groupId>
Ryan Young7b632b42018-08-23 13:35:03 -0400126 <artifactId>appc-common-bundle</artifactId>
Tomek Kaminski8d0eb7f2018-02-22 16:51:03 +0100127 <version>${project.version}</version>
128 </dependency>
Patrick Brady13c03532019-02-22 13:37:19 -0800129 <dependency>
130 <groupId>org.osgi</groupId>
131 <artifactId>org.osgi.core</artifactId>
132 <scope>provided</scope>
133 </dependency>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400134 </dependencies>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -0500135
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400136 <build>
137 <plugins>
138 <plugin>
139 <groupId>org.apache.felix</groupId>
140 <artifactId>maven-bundle-plugin</artifactId>
141 <extensions>true</extensions>
142 <configuration>
143 <instructions>
144 <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName>
Patrick Brady07567592017-12-13 11:09:30 -0800145 <Bundle-Activator>org.onap.appc.ccadaptor.CCAActivator</Bundle-Activator>
146 <Export-Package>org.onap.appc.adaptor</Export-Package>
Patrick Brady5b817642018-03-22 15:12:48 -0700147 <Import-Package>*;resolution:=optional</Import-Package>
148 <Embed-Dependency>jasypt,jsch,eelf-core</Embed-Dependency>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400149 <DynamicImport-Package>*</DynamicImport-Package>
150 </instructions>
151 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
152 </configuration>
153 </plugin>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400154 </plugins>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400155 </build>
Patrick Brady1d5c5fb2019-05-09 13:04:18 -0700156 <version>1.5.1-SNAPSHOT</version>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -0500157</project>