blob: 146e3a0c71f9558dbbd584b7af425062b963e061 [file] [log] [blame]
Skip Wonnelldb75c0a2017-08-15 12:43:03 -05001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.openecomp.appc</groupId>
7 <artifactId>appc-config-encryption-tool</artifactId>
Patrick Bradyed9fd622017-11-07 11:59:14 -08008 <version>1.2.0-SNAPSHOT</version>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -05009 </parent>
10 <artifactId>appc-config-encryption-tool-provider</artifactId>
11 <packaging>bundle</packaging>
12 <name>APPC Encryption Tool - Provider</name>
13 <url>http://maven.apache.org</url>
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17 <dependencies>
18 <dependency>
19 <groupId>equinoxSDK381</groupId>
20 <artifactId>org.eclipse.osgi</artifactId>
21 <version>${equinox.osgi.version}</version>
22 </dependency>
23 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070024 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050025 <artifactId>sli-provider</artifactId>
26 </dependency>
27 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070028 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050029 <artifactId>sql-resource-provider</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070030 <version>${openecomp.sdnc.sql-resource.version}</version>
Skip Wonnelldb75c0a2017-08-15 12:43:03 -050031 </dependency>
32 <dependency>
33 <groupId>commons-io</groupId>
34 <artifactId>commons-io</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.jasypt</groupId>
38 <artifactId>jasypt</artifactId>
39 <version>1.9.2</version>
40 <scope>compile</scope>
41 </dependency>
42 <dependency>
43 <groupId>com.att.eelf</groupId>
44 <artifactId>eelf-core</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>commons-configuration</groupId>
48 <artifactId>commons-configuration</artifactId>
49 <version>1.10</version>
50 </dependency>
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
54 <scope>test</scope>
55 </dependency>
56 </dependencies>
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
62 <version>${bundle.plugin.version}</version>
63 <extensions>true</extensions>
64 <configuration>
65 <instructions>
66 <Bundle-SymbolicName>org.openecomp.appc.encryptiontool</Bundle-SymbolicName>
67 <Bundle-Activator>org.openecomp.appc.encryptiontool.EncryptionToolActivator</Bundle-Activator>
68 <Export-Package>org.openecomp.appc.encryptiontool</Export-Package>
69 <Import-Package>*</Import-Package>
70 <DynamicImport-Package>*</DynamicImport-Package>
71 </instructions>
72 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
73 </configuration>
74 </plugin>
75 </plugins>
76 <pluginManagement>
77 <plugins>
78 </plugins>
79 </pluginManagement>
80 </build>
81</project>