diff --git a/config/dependency-license/allowed_licenses.json b/config/dependency-license/allowed_licenses.json index 06f87a4d9..473ddc8d7 100644 --- a/config/dependency-license/allowed_licenses.json +++ b/config/dependency-license/allowed_licenses.json @@ -39,6 +39,9 @@ { "moduleLicense": "BSD" }, + { + "moduleLicense": "BSD-2-Clause" + }, { "moduleLicense": "BSD 2-Clause License" }, @@ -54,6 +57,9 @@ { "moduleLicense": "BSD 3-Clause License" }, + { + "moduleLicense": "BSD 3-clause New License" + }, { "moduleLicense": "The 3-Clause BSD License" }, @@ -120,6 +126,9 @@ { "moduleLicense": "GNU GENERAL PUBLIC LICENSE, Version 2 + Classpath Exception" }, + { + "moduleLicense": "GNU Library General Public License v2.1 or later" + }, { "moduleLicense": "GPL2 w/ CPE" }, @@ -159,6 +168,9 @@ { "moduleLicense": "The MIT license" }, + { + "moduleLicense": "The PostgreSQL License" + }, { "moduleLicense": "Mozilla Public License Version 2.0" }, diff --git a/core/build.gradle b/core/build.gradle index d0b0e7014..0204bd3a2 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -247,8 +247,10 @@ dependencies { testCompile deps['org.hamcrest:hamcrest-all'] testCompile deps['org.hamcrest:hamcrest-core'] testCompile deps['org.hamcrest:hamcrest-library'] + compile deps['org.hibernate:hibernate-core'] testCompile deps['junit:junit'] testCompile deps['org.mockito:mockito-core'] + compile deps['org.postgresql:postgresql'] // Indirect dependency found by undeclared-dependency check. Such // dependencies should go after all other compile and testCompile diff --git a/dependencies.gradle b/dependencies.gradle index 6978e69bb..be463f8c4 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -115,10 +115,12 @@ ext { 'org.hamcrest:hamcrest-all:1.3', 'org.hamcrest:hamcrest-core:1.3', 'org.hamcrest:hamcrest-library:1.3', + 'org.hibernate:hibernate-core:5.4.4.Final', 'org.joda:joda-money:0.10.0', 'org.json:json:20160810', 'org.mockito:mockito-core:2.25.0', 'org.mortbay.jetty:jetty:6.1.26', + 'org.postgresql:postgresql:42.2.6', 'org.seleniumhq.selenium:selenium-api:3.141.59', 'org.seleniumhq.selenium:selenium-chrome-driver:3.141.59', 'org.seleniumhq.selenium:selenium-java:3.141.59',