Release appc
[appc.git] / appc-config / appc-encryption-tool / 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-encryption-tool-provider</artifactId>
32     <packaging>bundle</packaging>
33     <name>APPC Encryption Tool - Provider</name>
34     <url>http://maven.apache.org</url>
35     <properties>
36         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37     </properties>
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         <dependency>
49             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
50             <artifactId>sql-resource-provider</artifactId>
51         <version>${ccsdk.sli.adaptors.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>commons-io</groupId>
55             <artifactId>commons-io</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.jasypt</groupId>
59             <artifactId>jasypt</artifactId>
60             <version>1.9.2</version>
61             <scope>compile</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.apache.commons</groupId>
65             <artifactId>commons-lang3</artifactId>
66         </dependency>
67         <dependency>
68          <groupId>ch.qos.logback</groupId>
69          <artifactId>logback-classic</artifactId>
70          <version>${logback.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>com.att.eelf</groupId>
74             <artifactId>eelf-core</artifactId>
75             <exclusions>
76                  <exclusion>
77                      <groupId>ch.qos.logback</groupId>
78                      <artifactId>logback-classic</artifactId>
79                  </exclusion>
80             </exclusions>
81         </dependency>
82         <dependency>
83             <groupId>commons-configuration</groupId>
84             <artifactId>commons-configuration</artifactId>
85             <version>1.10</version>
86         </dependency>
87         <dependency>
88             <groupId>junit</groupId>
89             <artifactId>junit</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>com.fasterxml.jackson.core</groupId>
94             <artifactId>jackson-annotations</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>com.fasterxml.jackson.core</groupId>
98             <artifactId>jackson-databind</artifactId>
99         </dependency>
100     </dependencies>
101     <build>
102         <plugins>
103             <plugin>
104                 <groupId>org.apache.felix</groupId>
105                 <artifactId>maven-bundle-plugin</artifactId>
106                 <version>${bundle.plugin.version}</version>
107                 <extensions>true</extensions>
108                 <configuration>
109                     <instructions>
110                         <Bundle-SymbolicName>org.onap.appc.encryptiontool</Bundle-SymbolicName>
111                         <Bundle-Activator>org.onap.appc.encryptiontool.EncryptionToolActivator</Bundle-Activator>
112                         <Export-Package>org.onap.appc.encryptiontool</Export-Package>
113                         <Import-Package>!com.google.common.collect,*;resolution:=optional</Import-Package>
114                         <!--  <Embed-Dependency>guava,logback-core,logback-classic,eelf-core,jasypt,commons-configuration</Embed-Dependency> -->
115                         <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|!appc-common-bundle|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis</Embed-Dependency>
116                         <DynamicImport-Package>*</DynamicImport-Package>
117                     </instructions>
118                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
119                 </configuration>
120             </plugin>
121         </plugins>
122         <pluginManagement>
123             <plugins>
124             </plugins>
125         </pluginManagement>
126     </build>
127     <version>1.7.2</version>
128 </project>