blob: 57c7e33890edd117a07ff677a0d594621b7fae7f [file] [log] [blame]
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -04001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Brady5b817642018-03-22 15:12:48 -07006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06007 Copyright (C) 2017 Amdocs
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
Skip Wonnell8c4b89b2018-01-12 09:24:03 -060021 -->
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
Patrick Bradyb49dd122018-08-10 15:30:58 -070026 <groupId>org.onap.appc.parent</groupId>
27 <artifactId>binding-parent</artifactId>
Patrick Brady9d380082018-10-09 11:32:38 -070028 <version>1.4.0</version>
Patrick Bradyb49dd122018-08-10 15:30:58 -070029 <relativePath />
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040030 </parent>
Patrick Bradyb49dd122018-08-10 15:30:58 -070031 <groupId>org.onap.appc</groupId>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040032 <artifactId>appc-config-params-provider</artifactId>
33 <packaging>bundle</packaging>
34 <name>Config Params - Provider</name>
35
36 <dependencies>
37 <dependency>
38 <groupId>equinoxSDK381</groupId>
39 <artifactId>org.eclipse.osgi</artifactId>
40 <version>${equinox.osgi.version}</version>
41 </dependency>
42 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070043 <groupId>org.onap.ccsdk.sli.core</groupId>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040044 <artifactId>sli-provider</artifactId>
45 </dependency>
46
Taka Cho06ee81f2018-08-28 15:21:54 -040047 <dependency>
48 <groupId>com.datastax.cassandra</groupId>
49 <artifactId>cassandra-driver-core</artifactId>
50 <version>3.0.8</version>
51 </dependency>
52
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040053 <dependency>
54 <groupId>org.openecomp.sdc.common</groupId>
55 <artifactId>openecomp-tosca-datatype</artifactId>
56 <version>${tosca.datatype.version}</version>
Taka Cho06ee81f2018-08-28 15:21:54 -040057 <exclusions>
58 <exclusion>
59 <groupId>com.datastax.cassandra</groupId>
60 <artifactId>cassandra-driver-core</artifactId>
61 </exclusion>
Patrick Brady32780c72018-09-13 06:31:33 -070062 <exclusion>
63 <groupId>ch.qos.logback</groupId>
64 <artifactId>logback-classic</artifactId>
65 </exclusion>
Taka Cho06ee81f2018-08-28 15:21:54 -040066 </exclusions>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040067 </dependency>
Patrick Brady32780c72018-09-13 06:31:33 -070068<dependency>
69 <groupId>ch.qos.logback</groupId>
70 <artifactId>logback-classic</artifactId>
71 <version>1.2.3</version>
72 </dependency>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040073 <dependency>
74 <groupId>com.fasterxml.jackson.core</groupId>
75 <artifactId>jackson-databind</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>com.fasterxml.jackson.core</groupId>
79 <artifactId>jackson-annotations</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>com.fasterxml.jackson.core</groupId>
83 <artifactId>jackson-core</artifactId>
84 </dependency>
85 <dependency>
Patrick Brady5b817642018-03-22 15:12:48 -070086 <groupId>org.apache.commons</groupId>
87 <artifactId>commons-lang3</artifactId>
88 </dependency>
89 <dependency>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040090 <groupId>com.fasterxml.jackson.dataformat</groupId>
91 <artifactId>jackson-dataformat-yaml</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.yaml</groupId>
95 <artifactId>snakeyaml</artifactId>
96 </dependency>
97
98 <dependency>
99 <groupId>commons-io</groupId>
100 <artifactId>commons-io</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>com.att.eelf</groupId>
104 <artifactId>eelf-core</artifactId>
105 </dependency>
106
107 <dependency>
108 <groupId>junit</groupId>
109 <artifactId>junit</artifactId>
110 <scope>test</scope>
111 </dependency>
112
113 </dependencies>
114
115 <build>
116 <plugins>
117 <plugin>
118 <groupId>org.apache.felix</groupId>
119 <artifactId>maven-bundle-plugin</artifactId>
120 <version>${bundle.plugin.version}</version>
121 <extensions>true</extensions>
122 <configuration>
123 <instructions>
Takamune Cho8491cc32017-12-19 10:48:02 -0600124 <Bundle-SymbolicName>org.onap.sdnc.config.params</Bundle-SymbolicName>
125 <Bundle-Activator>org.onap.sdnc.config.params.ParamsHandlerActivator</Bundle-Activator>
126 <Export-Package>org.onap.sdnc.config.params,org.onap.sdnc.config.params.data,
127 org.onap.sdnc.config.params.parser,org.onap.sdnc.config.params.transformer,
128 org.onap.sdnc.config.params.transformer.tosca,org.onap.sdnc.config.params.transformer.tosca.exceptions</Export-Package>
Patrick Brady32780c72018-09-13 06:31:33 -0700129 <Import-Package>groovy.lang;resolution:=optional,org.codehaus.groovy.*;resolution:=optional,!com.google.common.collect,*</Import-Package>
Patrick Brady3ffa74f2018-05-14 14:01:46 -0700130 <Embed-Dependency>guava,jackson-databind,jackson-annotations,jackson-core,jackson-dataformat-yaml,eelf-core,logback-core,logback-classic</Embed-Dependency>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400131 <DynamicImport-Package>*</DynamicImport-Package>
132 </instructions>
133 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
134 </configuration>
135 </plugin>
136 </plugins>
137 <pluginManagement>
138 <plugins>
139 <!--This plugin's configuration is used to store Eclipse m2e settings
140 only. It has no influence on the Maven build itself. -->
141 </plugins>
142 </pluginManagement>
143 </build>
Patrick Bradyccd67e92018-11-12 12:14:11 -0800144 <version>1.5.0-SNAPSHOT</version>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400145</project>