diff options
author | Skip Wonnell <kw5258@att.com> | 2017-08-15 12:43:03 -0500 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2017-08-16 13:21:29 -0700 |
commit | db75c0a0b305c86429a6940de4d56870d3daf5bf (patch) | |
tree | c4dc685d8a5600300fadd51f6e8463ab8cc8c51b /appc-config/appc-encryption-tool/pom.xml | |
parent | 0500d5dbb363e74983d758288f1ac53ae763683d (diff) |
Initial commit for appc-encryption-tool bundle
appc-encryption-tool: module to retrieve and store
encryped credentials
Change-Id: I3d45c662c9d58dbeec2ab7fffb51658c9ee0d5d3
Signed-off-by: Skip Wonnell <kw5258@att.com>
Issue-Id: APPC-67
Diffstat (limited to 'appc-config/appc-encryption-tool/pom.xml')
-rw-r--r-- | appc-config/appc-encryption-tool/pom.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/appc-config/appc-encryption-tool/pom.xml b/appc-config/appc-encryption-tool/pom.xml new file mode 100644 index 000000000..2e8e24419 --- /dev/null +++ b/appc-config/appc-encryption-tool/pom.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/maven-v4_0_0.xsd"> + <parent> + <groupId>org.openecomp.appc</groupId> + <artifactId>appc-config</artifactId> + <version>1.1.0-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <packaging>pom</packaging> + <artifactId>appc-config-encryption-tool</artifactId> + + <name>APPC Encryption Tool</name> + <description>Common Utilities for DG</description> + + <properties> + <sdnctl.sql.resource.version>${sdnctl.sli.version}</sdnctl.sql.resource.version> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <mysql.connector.version>5.1.39</mysql.connector.version> + </properties> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.openecomp.appc</groupId> + <artifactId>appc-config-encryption-tool-features</artifactId> + <classifier>features</classifier> + <type>xml</type> + <version>${project.version}</version> + </dependency> + + <dependency> + <groupId>org.openecomp.appc</groupId> + <artifactId>appc-config-encryption-tool-provider</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + </dependencyManagement> + + <modules> + <module>provider</module> + <module>features</module> + <module>installer</module> + </modules> + +</project> |