blob: 6c48ada8b483c47f8122e01a3698a73aefa8214e [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>
8 <version>1.1.0-SNAPSHOT</version>
9 </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>
24 <groupId>org.openecomp.sdnc.core</groupId>
25 <artifactId>sli-provider</artifactId>
26 </dependency>
27 <dependency>
28 <groupId>org.openecomp.sdnc.adaptors</groupId>
29 <artifactId>sql-resource-provider</artifactId>
30 </dependency>
31 <dependency>
32 <groupId>commons-io</groupId>
33 <artifactId>commons-io</artifactId>
34 </dependency>
35 <dependency>
36 <groupId>org.jasypt</groupId>
37 <artifactId>jasypt</artifactId>
38 <version>1.9.2</version>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>com.att.eelf</groupId>
43 <artifactId>eelf-core</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>commons-configuration</groupId>
47 <artifactId>commons-configuration</artifactId>
48 <version>1.10</version>
49 </dependency>
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <scope>test</scope>
54 </dependency>
55 </dependencies>
56 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>maven-bundle-plugin</artifactId>
61 <version>${bundle.plugin.version}</version>
62 <extensions>true</extensions>
63 <configuration>
64 <instructions>
65 <Bundle-SymbolicName>org.openecomp.appc.encryptiontool</Bundle-SymbolicName>
66 <Bundle-Activator>org.openecomp.appc.encryptiontool.EncryptionToolActivator</Bundle-Activator>
67 <Export-Package>org.openecomp.appc.encryptiontool</Export-Package>
68 <Import-Package>*</Import-Package>
69 <DynamicImport-Package>*</DynamicImport-Package>
70 </instructions>
71 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
72 </configuration>
73 </plugin>
74 </plugins>
75 <pluginManagement>
76 <plugins>
77 </plugins>
78 </pluginManagement>
79 </build>
80</project>