From 67a44d2adc3895c9fee511b9302d6b3656323eef Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sun, 1 Nov 2015 05:50:08 -0500 Subject: [PATCH] added postgres --- dependency-check-core/pom.xml | 57 +++++++++++++++++++ .../data/dbStatements_postgreSQL.properties | 16 ++++++ .../resources/data/initialize_postgres.sql | 53 +++++++++++++++++ 3 files changed, 126 insertions(+) create mode 100644 dependency-check-core/src/main/resources/data/dbStatements_postgreSQL.properties create mode 100644 dependency-check-core/src/main/resources/data/initialize_postgres.sql diff --git a/dependency-check-core/pom.xml b/dependency-check-core/pom.xml index f64477a74..b801dd8d0 100644 --- a/dependency-check-core/pom.xml +++ b/dependency-check-core/pom.xml @@ -506,6 +506,63 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved. + + Postgresql-IntegrationTest + + + postgresql + + + + + org.postgresql + postgresql + 9.4-1204-jdbc42 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + data.driver_path + ${driver_path} + + + data.driver_name + ${driver_name} + + + data.connection_string + ${connection_string} + + + + **/*MySQLTest.java + + + + + + integration-test + verify + + + + + + +