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