f9391c6d66d99c354aceea2e887f9adb09a70f26
[appc.git] / appc-config / appc-config-params / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 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   -->
22 <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>
26                 <groupId>org.onap.appc.parent</groupId>
27                 <artifactId>binding-parent</artifactId>
28                 <version>1.4.0-SNAPSHOT</version>
29                 <relativePath />
30         </parent>
31         <groupId>org.onap.appc</groupId>
32         <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>
43                         <groupId>org.onap.ccsdk.sli.core</groupId>
44                         <artifactId>sli-provider</artifactId>
45                 </dependency>
46
47                 <dependency>
48                         <groupId>com.datastax.cassandra</groupId>
49                         <artifactId>cassandra-driver-core</artifactId>
50                         <version>3.0.8</version>
51                 </dependency>
52
53                 <dependency>
54                         <groupId>ch.qos.logback</groupId>
55                         <artifactId>logback-classic</artifactId>
56                         <version>1.2.0</version>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.openecomp.sdc.common</groupId>
61                         <artifactId>openecomp-tosca-datatype</artifactId>
62                         <version>${tosca.datatype.version}</version>
63                         <exclusions>
64                             <exclusion>
65                                  <groupId>com.datastax.cassandra</groupId>
66                                  <artifactId>cassandra-driver-core</artifactId>
67                             </exclusion>
68                             <exclusion>
69                                  <groupId>ch.qos.logback</groupId>
70                                  <artifactId>logback-classic</artifactId>
71                             </exclusion>
72                         </exclusions>
73                 </dependency>
74
75                 <dependency>
76                         <groupId>com.fasterxml.jackson.core</groupId>
77                         <artifactId>jackson-databind</artifactId>
78                 </dependency>
79                 <dependency>
80                         <groupId>com.fasterxml.jackson.core</groupId>
81                         <artifactId>jackson-annotations</artifactId>
82                 </dependency>
83                 <dependency>
84                         <groupId>com.fasterxml.jackson.core</groupId>
85                         <artifactId>jackson-core</artifactId>
86                 </dependency>
87                 <dependency>
88                         <groupId>org.apache.commons</groupId>
89                         <artifactId>commons-lang3</artifactId>
90                 </dependency>
91                 <dependency>
92                         <groupId>com.fasterxml.jackson.dataformat</groupId>
93                         <artifactId>jackson-dataformat-yaml</artifactId>
94                 </dependency>
95                 <dependency>
96                         <groupId>org.yaml</groupId>
97                         <artifactId>snakeyaml</artifactId>
98                 </dependency>
99
100                 <dependency>
101                         <groupId>commons-io</groupId>
102                         <artifactId>commons-io</artifactId>
103                 </dependency>
104                 <dependency>
105                         <groupId>com.att.eelf</groupId>
106                         <artifactId>eelf-core</artifactId>
107                 </dependency>
108
109                 <dependency>
110                         <groupId>junit</groupId>
111                         <artifactId>junit</artifactId>
112                         <scope>test</scope>
113                 </dependency>
114
115         </dependencies>
116
117         <build>
118                 <plugins>
119                         <plugin>
120                                 <groupId>org.apache.felix</groupId>
121                                 <artifactId>maven-bundle-plugin</artifactId>
122                                 <version>${bundle.plugin.version}</version>
123                                 <extensions>true</extensions>
124                                 <configuration>
125                                         <instructions>
126                                                 <Bundle-SymbolicName>org.onap.sdnc.config.params</Bundle-SymbolicName>
127                                                 <Bundle-Activator>org.onap.sdnc.config.params.ParamsHandlerActivator</Bundle-Activator>
128                                                 <Export-Package>org.onap.sdnc.config.params,org.onap.sdnc.config.params.data,
129                                                         org.onap.sdnc.config.params.parser,org.onap.sdnc.config.params.transformer,
130                                                         org.onap.sdnc.config.params.transformer.tosca,org.onap.sdnc.config.params.transformer.tosca.exceptions</Export-Package>
131                                                 <Import-Package>!com.google.common.collect,*</Import-Package>
132                                                 <Embed-Dependency>guava,jackson-databind,jackson-annotations,jackson-core,jackson-dataformat-yaml,eelf-core,logback-core,logback-classic</Embed-Dependency>
133                                                 <DynamicImport-Package>*</DynamicImport-Package>
134                                         </instructions>
135                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
136                                 </configuration>
137                         </plugin>
138                 </plugins>
139                 <pluginManagement>
140                         <plugins>
141                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
142                                         only. It has no influence on the Maven build itself. -->
143                         </plugins>
144                 </pluginManagement>
145         </build>
146 </project>