diff --git a/images/BUILD.bazel b/images/BUILD.bazel index 4906c38ddd66..ce9aff725aff 100644 --- a/images/BUILD.bazel +++ b/images/BUILD.bazel @@ -43,7 +43,7 @@ jvm_library( jvm_library( name = "images_test_lib", visibility = ["//visibility:public"], - srcs = glob(["test/**/*.kt", "test/**/*.java", "test/**/*.form"], allow_empty = True), + srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True), associates = [":images"], deps = [ "//platform/analysis-api:analysis", diff --git a/platform/platform-impl/BUILD.bazel b/platform/platform-impl/BUILD.bazel index 40a0b5a2f88a..403c6d204235 100644 --- a/platform/platform-impl/BUILD.bazel +++ b/platform/platform-impl/BUILD.bazel @@ -184,7 +184,7 @@ jvm_library( jvm_library( name = "ide-impl_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), javac_opts = ":custom-javac-options", associates = [":ide-impl"], deps = [ diff --git a/platform/statistics/devkit/BUILD.bazel b/platform/statistics/devkit/BUILD.bazel index 07583c4f1354..9f2e5c62e25f 100644 --- a/platform/statistics/devkit/BUILD.bazel +++ b/platform/statistics/devkit/BUILD.bazel @@ -41,7 +41,7 @@ jvm_library( jvm_library( name = "devkit_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":devkit"], deps = [ "@lib//:kotlin-stdlib", diff --git a/platform/testRunner/BUILD.bazel b/platform/testRunner/BUILD.bazel index ebcc3375b7ab..57f5c43fc1dd 100644 --- a/platform/testRunner/BUILD.bazel +++ b/platform/testRunner/BUILD.bazel @@ -38,7 +38,7 @@ jvm_library( jvm_library( name = "testRunner_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":testRunner"], deps = [ "//platform/analysis-api:analysis", diff --git a/platform/vcs-impl/BUILD.bazel b/platform/vcs-impl/BUILD.bazel index 25e636cf398e..b10440e3a8d8 100644 --- a/platform/vcs-impl/BUILD.bazel +++ b/platform/vcs-impl/BUILD.bazel @@ -81,7 +81,7 @@ jvm_library( jvm_library( name = "vcs-impl_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":vcs-impl"], deps = [ "//platform/analysis-api:analysis", diff --git a/platform/xdebugger-impl/BUILD.bazel b/platform/xdebugger-impl/BUILD.bazel index c1ff4b71481b..5f1fdc7b8b73 100644 --- a/platform/xdebugger-impl/BUILD.bazel +++ b/platform/xdebugger-impl/BUILD.bazel @@ -63,7 +63,7 @@ jvm_library( jvm_library( name = "debugger-impl_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":debugger-impl"], deps = [ "//platform/analysis-api:analysis", diff --git a/plugins/ant/BUILD.bazel b/plugins/ant/BUILD.bazel index 7b798460d201..e1861fd19f52 100644 --- a/plugins/ant/BUILD.bazel +++ b/plugins/ant/BUILD.bazel @@ -60,7 +60,7 @@ jvm_library( jvm_library( name = "ant_test_lib", visibility = ["//visibility:public"], - srcs = glob(["tests/src/**/*.kt", "tests/src/**/*.java", "tests/src/**/*.form"], allow_empty = True), + srcs = glob(["tests/src/**/*.kt", "tests/src/**/*.java"], allow_empty = True), associates = [":ant"], deps = [ "//java/openapi:java", diff --git a/plugins/copyright/BUILD.bazel b/plugins/copyright/BUILD.bazel index b0fa04e702cc..be7029a74e9f 100644 --- a/plugins/copyright/BUILD.bazel +++ b/plugins/copyright/BUILD.bazel @@ -39,7 +39,7 @@ jvm_library( jvm_library( name = "copyright_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":copyright"], deps = [ "//platform/analysis-api:analysis", diff --git a/plugins/coverage-common/BUILD.bazel b/plugins/coverage-common/BUILD.bazel index ce78dc9a03a1..144100a0b4ae 100644 --- a/plugins/coverage-common/BUILD.bazel +++ b/plugins/coverage-common/BUILD.bazel @@ -11,7 +11,7 @@ jvm_library( name = "coverage", module_name = "intellij.platform.coverage", visibility = ["//visibility:public"], - srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True), + srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True), deps = [ "//platform/analysis-api:analysis", "//platform/util/concurrency", @@ -45,7 +45,7 @@ jvm_library( jvm_library( name = "coverage_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":coverage"], deps = [ "@lib//:junit5", diff --git a/plugins/eclipse/BUILD.bazel b/plugins/eclipse/BUILD.bazel index 9a708bcc4af8..1a8bbe45b6e1 100644 --- a/plugins/eclipse/BUILD.bazel +++ b/plugins/eclipse/BUILD.bazel @@ -47,7 +47,7 @@ jvm_library( jvm_library( name = "eclipse_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSources/**/*.kt", "testSources/**/*.java", "testSources/**/*.form"], allow_empty = True), + srcs = glob(["testSources/**/*.kt", "testSources/**/*.java"], allow_empty = True), associates = [":eclipse"], deps = [ "//platform/analysis-api:analysis", diff --git a/plugins/editorconfig/backend/BUILD.bazel b/plugins/editorconfig/backend/BUILD.bazel index c745afeb3e86..e6c9b5508e57 100644 --- a/plugins/editorconfig/backend/BUILD.bazel +++ b/plugins/editorconfig/backend/BUILD.bazel @@ -59,7 +59,7 @@ jvm_library( jvm_library( name = "backend_test_lib", visibility = ["//visibility:public"], - srcs = glob(["test/**/*.kt", "test/**/*.java", "test/**/*.form"], allow_empty = True), + srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True), associates = [":backend"], deps = [ "//platform/analysis-api:analysis", diff --git a/plugins/git4idea/BUILD.bazel b/plugins/git4idea/BUILD.bazel index 2bf83df8231c..3e441dc89c68 100644 --- a/plugins/git4idea/BUILD.bazel +++ b/plugins/git4idea/BUILD.bazel @@ -116,7 +116,7 @@ jvm_library( jvm_library( name = "vcs-git_test_lib", visibility = ["//visibility:public"], - srcs = glob(["tests/**/*.kt", "tests/**/*.java", "tests/**/*.form"], allow_empty = True), + srcs = glob(["tests/**/*.kt", "tests/**/*.java"], allow_empty = True), kotlinc_opts = ":custom_vcs-git", associates = [":vcs-git"], deps = [ diff --git a/plugins/groovy/BUILD.bazel b/plugins/groovy/BUILD.bazel index 64d913414c95..3288c8d651ec 100644 --- a/plugins/groovy/BUILD.bazel +++ b/plugins/groovy/BUILD.bazel @@ -93,7 +93,7 @@ jvm_library( jvm_library( name = "groovy_test_lib", visibility = ["//visibility:public"], - srcs = glob(["test/**/*.kt", "test/**/*.java", "test/**/*.form"], allow_empty = True), + srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True), associates = [":groovy"], deps = [ "//platform/analysis-api:analysis", diff --git a/plugins/hg4idea/BUILD.bazel b/plugins/hg4idea/BUILD.bazel index b4c461b763c9..3704d7e2644d 100644 --- a/plugins/hg4idea/BUILD.bazel +++ b/plugins/hg4idea/BUILD.bazel @@ -44,7 +44,7 @@ jvm_library( jvm_library( name = "vcs-hg_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":vcs-hg"], deps = [ "//platform/analysis-api:analysis", diff --git a/plugins/java-i18n/BUILD.bazel b/plugins/java-i18n/BUILD.bazel index 949ba5bd2da2..d1e36adfe9b0 100644 --- a/plugins/java-i18n/BUILD.bazel +++ b/plugins/java-i18n/BUILD.bazel @@ -57,7 +57,7 @@ jvm_library( jvm_library( name = "java-i18n_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":java-i18n"], deps = [ "//java/java-indexing-api:indexing", diff --git a/plugins/javaFX/BUILD.bazel b/plugins/javaFX/BUILD.bazel index abff287eb1bd..1c65e276fd28 100644 --- a/plugins/javaFX/BUILD.bazel +++ b/plugins/javaFX/BUILD.bazel @@ -55,7 +55,7 @@ jvm_library( jvm_library( name = "javaFX_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":javaFX"], deps = [ "//platform/analysis-api:analysis", diff --git a/plugins/kotlin/base/scripting/scripting.k1/BUILD.bazel b/plugins/kotlin/base/scripting/scripting.k1/BUILD.bazel index dda7aa4719cf..661d08624649 100644 --- a/plugins/kotlin/base/scripting/scripting.k1/BUILD.bazel +++ b/plugins/kotlin/base/scripting/scripting.k1/BUILD.bazel @@ -11,7 +11,7 @@ jvm_library( name = "scripting.k1", module_name = "kotlin.base.scripting.k1", visibility = ["//visibility:public"], - srcs = glob(["src/**/*.kt", "src/**/*.java", "gen/**/*.kt", "gen/**/*.java"], allow_empty = True), + srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form", "gen/**/*.kt", "gen/**/*.java"], allow_empty = True), deps = [ "//platform/core-api:core", "//platform/projectModel-api:projectModel", diff --git a/plugins/lombok/BUILD.bazel b/plugins/lombok/BUILD.bazel index 90821b7fc2f9..6dcb7b41aafd 100644 --- a/plugins/lombok/BUILD.bazel +++ b/plugins/lombok/BUILD.bazel @@ -56,7 +56,7 @@ jvm_library( jvm_library( name = "lombok_test_lib", visibility = ["//visibility:public"], - srcs = glob(["src/test/java/**/*.kt", "src/test/java/**/*.java", "src/test/java/**/*.form"], allow_empty = True), + srcs = glob(["src/test/java/**/*.kt", "src/test/java/**/*.java"], allow_empty = True), associates = [":lombok"], deps = [ "//plugins/lombok/generated", diff --git a/plugins/performanceTesting/core/BUILD.bazel b/plugins/performanceTesting/core/BUILD.bazel index 8126ea23385f..9336b8f8a9fa 100644 --- a/plugins/performanceTesting/core/BUILD.bazel +++ b/plugins/performanceTesting/core/BUILD.bazel @@ -68,7 +68,7 @@ jvm_library( jvm_library( name = "performanceTesting_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":performanceTesting"], deps = [ "@lib//:kotlin-stdlib", diff --git a/plugins/performanceTesting/scripts-ui/BUILD.bazel b/plugins/performanceTesting/scripts-ui/BUILD.bazel index d9bdc799a595..c537f3ae6df8 100644 --- a/plugins/performanceTesting/scripts-ui/BUILD.bazel +++ b/plugins/performanceTesting/scripts-ui/BUILD.bazel @@ -29,7 +29,7 @@ jvm_library( jvm_library( name = "ui_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":ui"], deps = [ "//platform/core-api:core", diff --git a/plugins/properties/properties-resource-bundle-editor/BUILD.bazel b/plugins/properties/properties-resource-bundle-editor/BUILD.bazel index c787b6efe610..dbc8e15c62d4 100644 --- a/plugins/properties/properties-resource-bundle-editor/BUILD.bazel +++ b/plugins/properties/properties-resource-bundle-editor/BUILD.bazel @@ -42,7 +42,7 @@ jvm_library( jvm_library( name = "resource-bundle-editor_test_lib", visibility = ["//visibility:public"], - srcs = glob(["test/**/*.kt", "test/**/*.java", "test/**/*.form"], allow_empty = True), + srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True), associates = [":resource-bundle-editor"], deps = [ "//platform/analysis-api:analysis", diff --git a/plugins/rareJavaRefactorings/BUILD.bazel b/plugins/rareJavaRefactorings/BUILD.bazel index 74e051f750d9..3bab4de2be5a 100644 --- a/plugins/rareJavaRefactorings/BUILD.bazel +++ b/plugins/rareJavaRefactorings/BUILD.bazel @@ -36,7 +36,7 @@ jvm_library( jvm_library( name = "java-rareRefactorings_test_lib", visibility = ["//visibility:public"], - srcs = glob(["test/**/*.kt", "test/**/*.java", "test/**/*.form"], allow_empty = True), + srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True), associates = [":java-rareRefactorings"], deps = [ "//java/java-impl:impl", diff --git a/plugins/testng/BUILD.bazel b/plugins/testng/BUILD.bazel index f16e6a021dee..859f2a093a49 100644 --- a/plugins/testng/BUILD.bazel +++ b/plugins/testng/BUILD.bazel @@ -66,7 +66,7 @@ jvm_library( jvm_library( name = "testng_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSources/**/*.kt", "testSources/**/*.java", "testSources/**/*.form"], allow_empty = True), + srcs = glob(["testSources/**/*.kt", "testSources/**/*.java"], allow_empty = True), associates = [":testng"], deps = [ "//java/openapi:java", diff --git a/plugins/ui-designer/BUILD.bazel b/plugins/ui-designer/BUILD.bazel index 3caf22227ce9..a3acd440a147 100644 --- a/plugins/ui-designer/BUILD.bazel +++ b/plugins/ui-designer/BUILD.bazel @@ -82,7 +82,7 @@ jvm_library( jvm_library( name = "java-guiForms-designer_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":java-guiForms-designer"], deps = [ "//java/openapi:java", diff --git a/plugins/xpath/BUILD.bazel b/plugins/xpath/BUILD.bazel index 660286bfd597..929ae73d94ba 100644 --- a/plugins/xpath/BUILD.bazel +++ b/plugins/xpath/BUILD.bazel @@ -58,7 +58,7 @@ jvm_library( jvm_library( name = "xpath_test_lib", visibility = ["//visibility:public"], - srcs = glob(["xpath-lang/test/**/*.kt", "xpath-lang/test/**/*.java", "xpath-lang/test/**/*.form"], allow_empty = True), + srcs = glob(["xpath-lang/test/**/*.kt", "xpath-lang/test/**/*.java"], allow_empty = True), associates = [":xpath"], deps = [ "//platform/analysis-api:analysis", diff --git a/python/ide/impl/BUILD.bazel b/python/ide/impl/BUILD.bazel index 3d122e3a862a..157c9fd60742 100644 --- a/python/ide/impl/BUILD.bazel +++ b/python/ide/impl/BUILD.bazel @@ -61,7 +61,7 @@ jvm_library( jvm_library( name = "impl_test_lib", visibility = ["//visibility:public"], - srcs = glob(["tests/**/*.kt", "tests/**/*.java", "tests/**/*.form"], allow_empty = True), + srcs = glob(["tests/**/*.kt", "tests/**/*.java"], allow_empty = True), associates = [":impl"], deps = [ "//platform/analysis-api:analysis", diff --git a/spellchecker/BUILD.bazel b/spellchecker/BUILD.bazel index 93c404e55c6e..6253a656698b 100644 --- a/spellchecker/BUILD.bazel +++ b/spellchecker/BUILD.bazel @@ -59,7 +59,7 @@ jvm_library( jvm_library( name = "spellchecker_test_lib", visibility = ["//visibility:public"], - srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java", "testSrc/**/*.form"], allow_empty = True), + srcs = glob(["testSrc/**/*.kt", "testSrc/**/*.java"], allow_empty = True), associates = [":spellchecker"], deps = [ "//platform/analysis-api:analysis", diff --git a/xml/relaxng/BUILD.bazel b/xml/relaxng/BUILD.bazel index d1f20aac8fc9..714f9b033ca7 100644 --- a/xml/relaxng/BUILD.bazel +++ b/xml/relaxng/BUILD.bazel @@ -46,7 +46,7 @@ jvm_library( jvm_library( name = "relaxng_test_lib", visibility = ["//visibility:public"], - srcs = glob(["test/**/*.kt", "test/**/*.java", "test/**/*.form"], allow_empty = True), + srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True), associates = [":relaxng"], deps = [ "//platform/analysis-api:analysis", diff --git a/xml/xml-ui-common/BUILD.bazel b/xml/xml-ui-common/BUILD.bazel index eed484527ec0..f8088596c5cf 100644 --- a/xml/xml-ui-common/BUILD.bazel +++ b/xml/xml-ui-common/BUILD.bazel @@ -11,7 +11,7 @@ jvm_library( name = "ui-common", module_name = "intellij.xml.ui.common", visibility = ["//visibility:public"], - srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True), + srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True), deps = [ "//platform/lang-impl", "//xml/xml-parser:parser", diff --git a/xml/xmlbeans/BUILD.bazel b/xml/xmlbeans/BUILD.bazel index e49d43b000aa..a7676b980d02 100644 --- a/xml/xmlbeans/BUILD.bazel +++ b/xml/xmlbeans/BUILD.bazel @@ -35,7 +35,7 @@ jvm_library( jvm_library( name = "xmlbeans_test_lib", visibility = ["//visibility:public"], - srcs = glob(["test/**/*.kt", "test/**/*.java", "test/**/*.form"], allow_empty = True), + srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True), associates = [":xmlbeans"], deps = [ "//platform/analysis-api:analysis",