From 5053711e88cef11f59bc38b83140a4d39e307c81 Mon Sep 17 00:00:00 2001 From: Jussi Virtanen Date: Sun, 11 Nov 2018 08:33:33 +0000 Subject: [PATCH] Remove Gradle deprecation warnings (#246) Gradle 4.10.2 issues deprecation warnings. Based on the Gradle documentation, enable the STABLE_PUBLISHING feature preview to fix this. This is essentially a no-op as no Maven publications are published. --- settings.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.gradle b/settings.gradle index bf1ef6996c..60bac3c720 100644 --- a/settings.gradle +++ b/settings.gradle @@ -11,6 +11,8 @@ * specific language governing permissions and limitations under the License. */ +enableFeaturePreview('STABLE_PUBLISHING') + rootProject.name='pantheon' include 'acceptance-tests' include 'consensus'