blob: 9716d672cf49d14a9885f82479e731298f8e4df2 [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 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 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=========================================================
21 ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 -->
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080027 <groupId>org.onap.appc</groupId>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040028 <artifactId>appc-config-params</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080029 <version>1.3.0-SNAPSHOT</version>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040030 </parent>
31 <artifactId>appc-config-params-provider</artifactId>
32 <packaging>bundle</packaging>
33 <name>Config Params - Provider</name>
34
35 <dependencies>
36 <dependency>
37 <groupId>equinoxSDK381</groupId>
38 <artifactId>org.eclipse.osgi</artifactId>
39 <version>${equinox.osgi.version}</version>
40 </dependency>
41 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070042 <groupId>org.onap.ccsdk.sli.core</groupId>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040043 <artifactId>sli-provider</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.openecomp.sdc.common</groupId>
48 <artifactId>openecomp-tosca-datatype</artifactId>
49 <version>${tosca.datatype.version}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>com.fasterxml.jackson.core</groupId>
54 <artifactId>jackson-databind</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>com.fasterxml.jackson.core</groupId>
58 <artifactId>jackson-annotations</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>com.fasterxml.jackson.core</groupId>
62 <artifactId>jackson-core</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>com.fasterxml.jackson.dataformat</groupId>
66 <artifactId>jackson-dataformat-yaml</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.yaml</groupId>
70 <artifactId>snakeyaml</artifactId>
71 </dependency>
72
73 <dependency>
74 <groupId>commons-io</groupId>
75 <artifactId>commons-io</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>com.att.eelf</groupId>
79 <artifactId>eelf-core</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>junit</groupId>
84 <artifactId>junit</artifactId>
85 <scope>test</scope>
86 </dependency>
87
88 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>maven-bundle-plugin</artifactId>
95 <version>${bundle.plugin.version}</version>
96 <extensions>true</extensions>
97 <configuration>
98 <instructions>
Takamune Cho8491cc32017-12-19 10:48:02 -060099 <Bundle-SymbolicName>org.onap.sdnc.config.params</Bundle-SymbolicName>
100 <Bundle-Activator>org.onap.sdnc.config.params.ParamsHandlerActivator</Bundle-Activator>
101 <Export-Package>org.onap.sdnc.config.params,org.onap.sdnc.config.params.data,
102 org.onap.sdnc.config.params.parser,org.onap.sdnc.config.params.transformer,
103 org.onap.sdnc.config.params.transformer.tosca,org.onap.sdnc.config.params.transformer.tosca.exceptions</Export-Package>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400104 <Import-Package>*</Import-Package>
105 <DynamicImport-Package>*</DynamicImport-Package>
106 </instructions>
107 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
108 </configuration>
109 </plugin>
110 </plugins>
111 <pluginManagement>
112 <plugins>
113 <!--This plugin's configuration is used to store Eclipse m2e settings
114 only. It has no influence on the Maven build itself. -->
115 </plugins>
116 </pluginManagement>
117 </build>
118</project>