This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 32e5a5f  GEODE-4181: Use new includeTags property name (#6742)
32e5a5f is described below

commit 32e5a5f43db838aaaee87b76f3913550a9983ce8
Author: Dale Emery <dem...@vmware.com>
AuthorDate: Thu Aug 5 17:05:36 2021 -0700

    GEODE-4181: Use new includeTags property name (#6742)
    
    Change `./gradle/test.gradle` to use the new JUnit Platform property
    name `includeTags` instead of the now-obsolete `includeCategories`.
---
 gradle/test.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle/test.gradle b/gradle/test.gradle
index f3f7a25..111106c 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -94,7 +94,7 @@ configure([integrationTest, distributedTest, performanceTest, 
acceptanceTest, ui
 configure([integrationTest, distributedTest, performanceTest]) {
   useJUnitPlatform {
     if (project.hasProperty("testCategory")) {
-      includeCategories += project.testCategory
+      includeTags += project.testCategory
     }
   }
 }

Reply via email to