Release appc
[appc.git] / appc-config / appc-config-generator / 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>2.6.1</version>
29                 <relativePath />
30         </parent>
31         <groupId>org.onap.appc</groupId>
32     <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>
45             <groupId>org.onap.ccsdk.sli.core</groupId>
46             <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>
58             <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>
66             <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>
85             <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>
97          <dependency>
98            <groupId>ch.qos.logback</groupId>
99            <artifactId>logback-classic</artifactId>
100            <version>${logback.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>com.att.eelf</groupId>
104             <artifactId>eelf-core</artifactId>
105             <exclusions>
106                  <exclusion>
107                       <groupId>ch.qos.logback</groupId>
108                       <artifactId>logback-classic</artifactId>
109                  </exclusion>
110             </exclusions>
111         </dependency>
112
113         <dependency>
114             <groupId>junit</groupId>
115             <artifactId>junit</artifactId>
116             <scope>test</scope>
117         </dependency>
118     <dependency>
119         <groupId>org.powermock</groupId>
120         <artifactId>powermock-api-mockito</artifactId>
121         <version>1.6.4</version>
122         <scope>test</scope>
123         </dependency>
124         <dependency>
125         <groupId>org.mockito</groupId>
126         <artifactId>mockito-core</artifactId>
127         <scope>test</scope>
128         </dependency>
129
130     </dependencies>
131
132     <build>
133         <plugins>
134             <plugin>
135                 <groupId>org.apache.felix</groupId>
136                 <artifactId>maven-bundle-plugin</artifactId>
137                 <version>${bundle.plugin.version}</version>
138                 <extensions>true</extensions>
139                 <configuration>
140                     <instructions>
141                         <Bundle-SymbolicName>org.onap.sdnc.config.generator</Bundle-SymbolicName>
142                         <Bundle-Activator>org.onap.sdnc.config.generator.ConfigGeneratorActivator</Bundle-Activator>
143                         <Export-Package>org.onap.sdnc.config.generator,org.onap.sdnc.config.generator.compare,org.onap.sdnc.config.generator.convert,
144                             org.onap.sdnc.config.generator.merge,org.onap.sdnc.config.generator.pattern,org.onap.sdnc.config.generator.tool,
145                             org.onap.sdnc.config.generator.transform</Export-Package>
146                         <Import-Package>!com.werken.xpath,!com.google.common.collect,*;resolution:=optional</Import-Package>
147                         <Embed-Dependency>guava,jackson-databind,jackson-annotations,jackson-core,eelf-core,logback-core,logback-classic,commons-io,jettison,velocity,commons-collections</Embed-Dependency>
148                         <DynamicImport-Package>*</DynamicImport-Package>
149                     </instructions>
150                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
151                 </configuration>
152             </plugin>
153
154         </plugins>
155     </build>
156     <version>1.6.3</version>
157 </project>