blob: 271873581123ed4ec992e95926ef1635400c6ac5 [file] [log] [blame]
Skip Wonnelldbf27a42017-08-15 18:07:13 -05001<?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 -->
Skip Wonnelldbf27a42017-08-15 18:07:13 -050022<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>
Patrick Bradyb49dd122018-08-10 15:30:58 -070025 <parent>
26 <groupId>org.onap.appc.parent</groupId>
27 <artifactId>binding-parent</artifactId>
28 <version>1.4.0-SNAPSHOT</version>
29 <relativePath />
30 </parent>
Patrick Brady07567592017-12-13 11:09:30 -080031 <groupId>org.onap.appc</groupId>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050032 <artifactId>appc-config-generator-provider</artifactId>
33 <packaging>bundle</packaging>
34 <name>Config Generator - Provider</name>
35 <url>http://maven.apache.org</url>
36
37
38 <dependencies>
39 <dependency>
40 <groupId>equinoxSDK381</groupId>
41 <artifactId>org.eclipse.osgi</artifactId>
42 <version>${equinox.osgi.version}</version>
43 </dependency>
44 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070045 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050046 <artifactId>sli-provider</artifactId>
47 </dependency>
48
49 <dependency>
50 <groupId>com.fasterxml.jackson.core</groupId>
51 <artifactId>jackson-databind</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>com.fasterxml.jackson.core</groupId>
55 <artifactId>jackson-annotations</artifactId>
56 </dependency>
57 <dependency>
Patrick Brady5b817642018-03-22 15:12:48 -070058 <groupId>org.apache.commons</groupId>
59 <artifactId>commons-lang3</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.onap.ccsdk.sli.core</groupId>
63 <artifactId>dblib-provider</artifactId>
64 </dependency>
65 <dependency>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050066 <groupId>com.fasterxml.jackson.core</groupId>
67 <artifactId>jackson-core</artifactId>
68 </dependency>
69 <!-- >dependency>
70 <groupId>com.fasterxml.jackson.dataformat</groupId>
71 <artifactId>jackson-dataformat-properties</artifactId>
72 </dependency-->
73
74 <dependency>
75 <groupId>org.codehaus.jettison</groupId>
76 <artifactId>jettison</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>commons-io</groupId>
80 <artifactId>commons-io</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.velocity</groupId>
84 <artifactId>velocity</artifactId>
Taka Choff286ea2018-02-23 21:30:06 -050085 <exclusions>
86 <exclusion>
87 <artifactId>commons-collections</artifactId>
88 <groupId>commons-collections</groupId>
89 </exclusion>
90 </exclusions>
91 </dependency>
92 <dependency>
93 <groupId>commons-collections</groupId>
94 <artifactId>commons-collections</artifactId>
95 <version>3.2.2</version>
96 </dependency>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050097
98 <dependency>
99 <groupId>com.att.eelf</groupId>
100 <artifactId>eelf-core</artifactId>
101 </dependency>
102
103 <dependency>
104 <groupId>junit</groupId>
105 <artifactId>junit</artifactId>
106 <scope>test</scope>
107 </dependency>
Patrick Brady5b817642018-03-22 15:12:48 -0700108 <dependency>
109 <groupId>org.powermock</groupId>
110 <artifactId>powermock-api-mockito</artifactId>
111 <version>1.6.4</version>
112 <scope>test</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.mockito</groupId>
116 <artifactId>mockito-core</artifactId>
117 <scope>test</scope>
118 </dependency>
Skip Wonnelldbf27a42017-08-15 18:07:13 -0500119
120 </dependencies>
121
122 <build>
123 <plugins>
124 <plugin>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>maven-bundle-plugin</artifactId>
127 <version>${bundle.plugin.version}</version>
128 <extensions>true</extensions>
129 <configuration>
130 <instructions>
Takamune Cho8491cc32017-12-19 10:48:02 -0600131 <Bundle-SymbolicName>org.onap.sdnc.config.generator</Bundle-SymbolicName>
132 <Bundle-Activator>org.onap.sdnc.config.generator.ConfigGeneratorActivator</Bundle-Activator>
133 <Export-Package>org.onap.sdnc.config.generator,org.onap.sdnc.config.generator.compare,org.onap.sdnc.config.generator.convert,
134 org.onap.sdnc.config.generator.merge,org.onap.sdnc.config.generator.pattern,org.onap.sdnc.config.generator.tool,
135 org.onap.sdnc.config.generator.transform</Export-Package>
Patrick Brady5b817642018-03-22 15:12:48 -0700136 <Import-Package>!com.werken.xpath,!com.google.common.collect,*;resolution:=optional</Import-Package>
137 <Embed-Dependency>guava,jackson-databind,jackson-annotations,jackson-core,eelf-core,logback-core,logback-classic,commons-io,jettison,velocity,commons-collections</Embed-Dependency>
Skip Wonnelldbf27a42017-08-15 18:07:13 -0500138 <DynamicImport-Package>*</DynamicImport-Package>
139 </instructions>
140 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
141 </configuration>
142 </plugin>
143
144 </plugins>
Skip Wonnelldbf27a42017-08-15 18:07:13 -0500145 </build>
146</project>