You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2019/03/01 13:40:56 UTC

[ignite] 02/02: IGNITE-11461: Automatic modules support for Apache Ignite: test started using gradle

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

dpavlov pushed a commit to branch ignite-11461-java11
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 6b1ad560ddf8cc958c26b0bae83e956765bb6908
Author: Dmitriy Pavlov <dp...@apache.org>
AuthorDate: Fri Mar 1 16:40:40 2019 +0300

    IGNITE-11461: Automatic modules support for Apache Ignite: test started using gradle
---
 modules/dev-utils/ignite-modules-test/build.gradle | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/modules/dev-utils/ignite-modules-test/build.gradle b/modules/dev-utils/ignite-modules-test/build.gradle
index 37464de..661b593 100644
--- a/modules/dev-utils/ignite-modules-test/build.gradle
+++ b/modules/dev-utils/ignite-modules-test/build.gradle
@@ -75,4 +75,9 @@ test {
         "--add-exports=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED",
         "--illegal-access=permit",
         "-Djdk.tls.client.protocols=TLSv1.2");
+}
+
+tasks.withType(Test) {
+    scanForTestClasses = false
+    include "**/*Test.class" // whatever Ant pattern matches your test class files
 }
\ No newline at end of file