blob: d9ffca4785007057fb8509fd6ac66dedfd5fa140 [file] [log] [blame]
Skip Wonnelldb75c0a2017-08-15 12:43:03 -05001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Brady5b817642018-03-22 15:12:48 -07006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06007 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=========================================================
Skip Wonnell8c4b89b2018-01-12 09:24:03 -060021 -->
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050022<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>
Patrick Bradyb49dd122018-08-10 15:30:58 -070025 <parent>
26 <groupId>org.onap.appc.parent</groupId>
27 <artifactId>binding-parent</artifactId>
28 <version>1.4.0-SNAPSHOT</version>
29 <relativePath />
30 </parent>
Patrick Brady07567592017-12-13 11:09:30 -080031 <groupId>org.onap.appc</groupId>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050032 <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>
Patrick Brady76706002017-09-04 21:37:25 -070046 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050047 <artifactId>sli-provider</artifactId>
48 </dependency>
49 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070050 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050051 <artifactId>sql-resource-provider</artifactId>
Patrick Brady5b817642018-03-22 15:12:48 -070052 <version>${ccsdk.sli.adaptors.version}</version>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050053 </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>
Patrick Brady5b817642018-03-22 15:12:48 -070065 <groupId>org.apache.commons</groupId>
66 <artifactId>commons-lang3</artifactId>
67 </dependency>
68 <dependency>
Patrick Brady28da5022018-09-17 12:52:55 -070069 <groupId>ch.qos.logback</groupId>
70 <artifactId>logback-classic</artifactId>
71 <version>${logback.version}</version>
72 </dependency>
73 <dependency>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050074 <groupId>com.att.eelf</groupId>
75 <artifactId>eelf-core</artifactId>
Patrick Brady28da5022018-09-17 12:52:55 -070076 <exclusions>
77 <exclusion>
78 <groupId>ch.qos.logback</groupId>
79 <artifactId>logback-classic</artifactId>
80 </exclusion>
81 </exclusions>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050082 </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 </dependencies>
94 <build>
95 <plugins>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-bundle-plugin</artifactId>
99 <version>${bundle.plugin.version}</version>
100 <extensions>true</extensions>
101 <configuration>
102 <instructions>
Patrick Brady07567592017-12-13 11:09:30 -0800103 <Bundle-SymbolicName>org.onap.appc.encryptiontool</Bundle-SymbolicName>
104 <Bundle-Activator>org.onap.appc.encryptiontool.EncryptionToolActivator</Bundle-Activator>
105 <Export-Package>org.onap.appc.encryptiontool</Export-Package>
Patrick Brady5b817642018-03-22 15:12:48 -0700106 <Import-Package>!com.google.common.collect,*;resolution:=optional</Import-Package>
107 <!-- <Embed-Dependency>guava,logback-core,logback-classic,eelf-core,jasypt,commons-configuration</Embed-Dependency> -->
Ryan Young7b632b42018-08-23 13:35:03 -0400108 <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>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -0500109 <DynamicImport-Package>*</DynamicImport-Package>
110 </instructions>
111 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
112 </configuration>
113 </plugin>
114 </plugins>
115 <pluginManagement>
116 <plugins>
117 </plugins>
118 </pluginManagement>
119 </build>
120</project>