From 86fefa9a03d611d92c12a861c01938dfe4f37b58 Mon Sep 17 00:00:00 2001 From: Weimin Yu Date: Wed, 14 Aug 2019 12:32:07 -0400 Subject: [PATCH] Make postgres dependency runtime (#225) * Make postgres dependency runtime Labeling it 'compile' unnecessarily makes psql-dependency a public contract. --- core/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/build.gradle b/core/build.gradle index 0204bd3a2..71edb3175 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -250,7 +250,7 @@ dependencies { compile deps['org.hibernate:hibernate-core'] testCompile deps['junit:junit'] testCompile deps['org.mockito:mockito-core'] - compile deps['org.postgresql:postgresql'] + runtime deps['org.postgresql:postgresql'] // Indirect dependency found by undeclared-dependency check. Such // dependencies should go after all other compile and testCompile