You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2021/03/30 10:41:48 UTC

[lucene] 02/06: We don't need to exclude inner classes explicitly.

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

dweiss pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git

commit 78bfbe0badcc79ba6d599ea03ad41317656e87a1
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Tue Mar 30 10:57:15 2021 +0200

    We don't need to exclude inner classes explicitly.
---
 gradle/ant-compat/misc.gradle | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/gradle/ant-compat/misc.gradle b/gradle/ant-compat/misc.gradle
index b0494dd..d50a80b 100644
--- a/gradle/ant-compat/misc.gradle
+++ b/gradle/ant-compat/misc.gradle
@@ -15,14 +15,6 @@
  * limitations under the License.
  */
 
-
-// Exclude inner classes from testing.
-allprojects {
-  tasks.withType(Test) { task ->
-    exclude '**/*$*'
-  }
-}
-
 // Exclude test classes that are not actually stand-alone tests (they're executed from other stuff).
 configure(project(":lucene:replicator")) {
   plugins.withType(JavaPlugin) {