blob: ea4f61996d1067bb17412f392b58d7ea42df6918 [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 ================================================================================
John McClungcd5f4f62018-06-13 14:03:54 -04006 Copyright (C) 2017-2018 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>
29 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080030 <groupId>org.onap.appc</groupId>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040031 <artifactId>appc-config-adaptor</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070032 <version>1.4.0-SNAPSHOT</version>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040033 </parent>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050034
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040035 <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>
Patrick Brady76706002017-09-04 21:37:25 -070052 <groupId>org.onap.ccsdk.sli.core</groupId>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040053 <artifactId>sli-common</artifactId>
54 <scope>compile</scope>
55 </dependency>
56 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070057 <groupId>org.onap.ccsdk.sli.core</groupId>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040058 <artifactId>sli-provider</artifactId>
59 <scope>compile</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.powermock</groupId>
63 <artifactId>powermock-api-mockito</artifactId>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050064 <scope>test</scope>
65 </dependency>
66 <dependency>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040067 <groupId>org.mockito</groupId>
68 <artifactId>mockito-core</artifactId>
69 <scope>test</scope>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050070 </dependency>
71
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040072 <dependency>
73 <groupId>com.att.eelf</groupId>
74 <artifactId>eelf-core</artifactId>
75 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050076
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040077 <dependency>
78 <groupId>com.jcraft</groupId>
79 <artifactId>jsch</artifactId>
80 <version>0.1.52</version>
81 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050082
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040083 <dependency>
84 <groupId>jdom</groupId>
85 <artifactId>jdom</artifactId>
86 <version>1.1</version>
87 </dependency>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050088
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -040089 <dependency>
90 <groupId>xerces</groupId>
91 <artifactId>xerces</artifactId>
92 <version>2.4.0</version>
93 <scope>provided</scope>
94 </dependency>
95 <dependency>
96 <groupId>com.sun.jersey</groupId>
97 <artifactId>jersey-client</artifactId>
98 <version>1.17</version>
99 <scope>provided</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.jasypt</groupId>
103 <artifactId>jasypt</artifactId>
104 <version>1.9.2</version>
105 <scope>compile</scope>
106 </dependency>
Tomek Kaminski31b71122018-01-26 13:49:50 +0100107 <dependency>
108 <groupId>commons-io</groupId>
109 <artifactId>commons-io</artifactId>
110 <scope>test</scope>
111 </dependency>
Tomek Kaminski8d0eb7f2018-02-22 16:51:03 +0100112 <dependency>
113 <groupId>org.onap.appc</groupId>
114 <artifactId>appc-common</artifactId>
115 <version>${project.version}</version>
116 </dependency>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400117 </dependencies>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -0500118
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400119 <build>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.felix</groupId>
123 <artifactId>maven-bundle-plugin</artifactId>
124 <extensions>true</extensions>
125 <configuration>
126 <instructions>
127 <Bundle-SymbolicName>appc.config.adaptor</Bundle-SymbolicName>
Patrick Brady07567592017-12-13 11:09:30 -0800128 <Bundle-Activator>org.onap.appc.ccadaptor.CCAActivator</Bundle-Activator>
129 <Export-Package>org.onap.appc.adaptor</Export-Package>
Patrick Brady5b817642018-03-22 15:12:48 -0700130 <Import-Package>*;resolution:=optional</Import-Package>
131 <Embed-Dependency>jasypt,jsch,eelf-core</Embed-Dependency>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400132 <DynamicImport-Package>*</DynamicImport-Package>
133 </instructions>
134 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
135 </configuration>
136 </plugin>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400137 </plugins>
Chaturvedi, Anand (ac204h)50fdfca2017-09-01 15:35:26 -0400138 </build>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -0500139</project>