From 8edfd285d72a9d2ce7b7d52fc6b56acfc685dd75 Mon Sep 17 00:00:00 2001 From: Ben Liblit Date: Fri, 20 Jul 2018 17:53:58 -0500 Subject: [PATCH] Turn off a Gradle warning about Gradle 5.0 incompatibility The issue here is a planned change to how "publishing" blocks work. Per , the right way to prepare for this change is to enable it and check for unexpected changes in what gets published to a local repository. I have done this, and find no unexpected changes. So we are actually ready for Gradle 5.0; the warning is a false positive for us. Leaving the future change enabled means we won't keep seeing this warning. It also means that any further changes to our use of "publishing" will be tested under that future change, which is a good way to avoid surprises later. --- settings.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.gradle b/settings.gradle index 85f9efd68..2a822a52d 100644 --- a/settings.gradle +++ b/settings.gradle @@ -35,3 +35,5 @@ include( 'com.ibm.wala.util', 'com.ibm.wala_feature', ) + +enableFeaturePreview('STABLE_PUBLISHING')