blob: 50a01660800e67c7b38e240540567b5ec2ac0900 [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 ================================================================================
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 -->
Skip Wonnelldbf27a42017-08-15 18:07:13 -050023<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>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050028 <artifactId>appc-config-generator</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080029 <version>1.3.0-SNAPSHOT</version>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050030 </parent>
31 <artifactId>appc-config-generator-provider</artifactId>
32 <packaging>bundle</packaging>
33 <name>Config Generator - Provider</name>
34 <url>http://maven.apache.org</url>
35
36
37 <dependencies>
38 <dependency>
39 <groupId>equinoxSDK381</groupId>
40 <artifactId>org.eclipse.osgi</artifactId>
41 <version>${equinox.osgi.version}</version>
42 </dependency>
43 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070044 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050045 <artifactId>sli-provider</artifactId>
46 </dependency>
47
48 <dependency>
49 <groupId>com.fasterxml.jackson.core</groupId>
50 <artifactId>jackson-databind</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>com.fasterxml.jackson.core</groupId>
54 <artifactId>jackson-annotations</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>com.fasterxml.jackson.core</groupId>
58 <artifactId>jackson-core</artifactId>
59 </dependency>
60 <!-- >dependency>
61 <groupId>com.fasterxml.jackson.dataformat</groupId>
62 <artifactId>jackson-dataformat-properties</artifactId>
63 </dependency-->
64
65 <dependency>
66 <groupId>org.codehaus.jettison</groupId>
67 <artifactId>jettison</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>commons-io</groupId>
71 <artifactId>commons-io</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.velocity</groupId>
75 <artifactId>velocity</artifactId>
Taka Choff286ea2018-02-23 21:30:06 -050076 <exclusions>
77 <exclusion>
78 <artifactId>commons-collections</artifactId>
79 <groupId>commons-collections</groupId>
80 </exclusion>
81 </exclusions>
82 </dependency>
83 <dependency>
84 <groupId>commons-collections</groupId>
85 <artifactId>commons-collections</artifactId>
86 <version>3.2.2</version>
87 </dependency>
Skip Wonnelldbf27a42017-08-15 18:07:13 -050088
89 <dependency>
90 <groupId>com.att.eelf</groupId>
91 <artifactId>eelf-core</artifactId>
92 </dependency>
93
94 <dependency>
95 <groupId>junit</groupId>
96 <artifactId>junit</artifactId>
97 <scope>test</scope>
98 </dependency>
Chaturvedi, Anand (ac204h)48f77d62017-08-31 19:07:53 -040099 <dependency>
100 <groupId>org.powermock</groupId>
101 <artifactId>powermock-api-mockito</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -0700102 <version>1.6.4</version>
Chaturvedi, Anand (ac204h)48f77d62017-08-31 19:07:53 -0400103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.mockito</groupId>
107 <artifactId>mockito-core</artifactId>
108 <scope>test</scope>
109 </dependency>
Skip Wonnelldbf27a42017-08-15 18:07:13 -0500110
111 </dependencies>
112
113 <build>
114 <plugins>
115 <plugin>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-bundle-plugin</artifactId>
118 <version>${bundle.plugin.version}</version>
119 <extensions>true</extensions>
120 <configuration>
121 <instructions>
Takamune Cho8491cc32017-12-19 10:48:02 -0600122 <Bundle-SymbolicName>org.onap.sdnc.config.generator</Bundle-SymbolicName>
123 <Bundle-Activator>org.onap.sdnc.config.generator.ConfigGeneratorActivator</Bundle-Activator>
124 <Export-Package>org.onap.sdnc.config.generator,org.onap.sdnc.config.generator.compare,org.onap.sdnc.config.generator.convert,
125 org.onap.sdnc.config.generator.merge,org.onap.sdnc.config.generator.pattern,org.onap.sdnc.config.generator.tool,
126 org.onap.sdnc.config.generator.transform</Export-Package>
Skip Wonnelldbf27a42017-08-15 18:07:13 -0500127 <Import-Package>*</Import-Package>
128 <DynamicImport-Package>*</DynamicImport-Package>
129 </instructions>
130 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
131 </configuration>
132 </plugin>
133
134 </plugins>
Skip Wonnelldbf27a42017-08-15 18:07:13 -0500135 </build>
136</project>