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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24         <parent>
25                 <groupId>org.onap.appc.parent</groupId>
26                 <artifactId>binding-parent</artifactId>
27                 <version>2.7.2</version>
28                 <relativePath/>
29         </parent>
30         <groupId>org.onap.appc</groupId>
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>
44             <groupId>org.onap.ccsdk.sli.core</groupId>
45             <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>org.apache.commons</groupId>
58             <artifactId>commons-lang3</artifactId>
59         </dependency>
60                 <dependency>
61             <groupId>org.onap.ccsdk.sli.core</groupId>
62             <artifactId>dblib-provider</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>com.fasterxml.jackson.core</groupId>
66             <artifactId>jackson-core</artifactId>
67         </dependency>
68         <!-- >dependency>
69             <groupId>com.fasterxml.jackson.dataformat</groupId>
70             <artifactId>jackson-dataformat-properties</artifactId>
71         </dependency-->
72
73         <dependency>
74             <groupId>org.codehaus.jettison</groupId>
75             <artifactId>jettison</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>commons-io</groupId>
79             <artifactId>commons-io</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.apache.velocity</groupId>
83             <artifactId>velocity</artifactId>
84             <exclusions>
85                  <exclusion>
86                        <artifactId>commons-collections</artifactId>
87                        <groupId>commons-collections</groupId>
88                   </exclusion>
89             </exclusions>
90          </dependency>
91          <dependency>
92                 <groupId>commons-collections</groupId>
93                 <artifactId>commons-collections</artifactId>
94                 <version>3.2.2</version>
95           </dependency>
96          <dependency>
97            <groupId>ch.qos.logback</groupId>
98            <artifactId>logback-classic</artifactId>
99            <version>${logback.version}</version>
100         </dependency>
101         <dependency>
102             <groupId>com.att.eelf</groupId>
103             <artifactId>eelf-core</artifactId>
104             <exclusions>
105                  <exclusion>
106                       <groupId>ch.qos.logback</groupId>
107                       <artifactId>logback-classic</artifactId>
108                  </exclusion>
109             </exclusions>
110         </dependency>
111
112         <dependency>
113             <groupId>junit</groupId>
114             <artifactId>junit</artifactId>
115             <scope>test</scope>
116         </dependency>
117     <dependency>
118         <groupId>org.powermock</groupId>
119         <artifactId>powermock-api-mockito</artifactId>
120         <version>1.6.4</version>
121         <scope>test</scope>
122         </dependency>
123         <dependency>
124         <groupId>org.mockito</groupId>
125         <artifactId>mockito-core</artifactId>
126         <scope>test</scope>
127         </dependency>
128
129     </dependencies>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <groupId>org.apache.felix</groupId>
135                 <artifactId>maven-bundle-plugin</artifactId>
136                 <version>${bundle.plugin.version}</version>
137                 <extensions>true</extensions>
138                 <configuration>
139                     <instructions>
140                         <Bundle-SymbolicName>org.onap.sdnc.config.generator</Bundle-SymbolicName>
141                         <Bundle-Activator>org.onap.sdnc.config.generator.ConfigGeneratorActivator</Bundle-Activator>
142                         <Export-Package>org.onap.sdnc.config.generator,org.onap.sdnc.config.generator.compare,org.onap.sdnc.config.generator.convert,
143                             org.onap.sdnc.config.generator.merge,org.onap.sdnc.config.generator.pattern,org.onap.sdnc.config.generator.tool,
144                             org.onap.sdnc.config.generator.transform</Export-Package>
145                         <Import-Package>!com.werken.xpath,!com.google.common.collect,*;resolution:=optional</Import-Package>
146                         <Embed-Dependency>guava,jackson-databind,jackson-annotations,jackson-core,eelf-core,logback-core,logback-classic,commons-io,jettison,velocity,commons-collections</Embed-Dependency>
147                         <DynamicImport-Package>*</DynamicImport-Package>
148                     </instructions>
149                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
150                 </configuration>
151             </plugin>
152
153         </plugins>
154     </build>
155     <version>1.7.2</version>
156 </project>