diff --git a/build/tests/BUILD.bazel b/build/tests/BUILD.bazel index 9fa4865b001f..007d89d3704b 100644 --- a/build/tests/BUILD.bazel +++ b/build/tests/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build intellij.idea.community.build.tests` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "tests_test_lib", module_name = "intellij.idea.community.build.tests", diff --git a/fleet/codecache/test/BUILD.bazel b/fleet/codecache/test/BUILD.bazel index f67b15c496b5..9b308f3483d0 100644 --- a/fleet/codecache/test/BUILD.bazel +++ b/fleet/codecache/test/BUILD.bazel @@ -14,6 +14,12 @@ create_kotlinc_options( x_lambdas = "class" ) +jvm_library( + name = "test", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True, exclude = ["**/module-info.java"]) +) + jvm_library( name = "test_test_lib", module_name = "fleet.codecache.test", diff --git a/fleet/util/codepoints/test/BUILD.bazel b/fleet/util/codepoints/test/BUILD.bazel index a4d71943dea8..a468022bd5d8 100644 --- a/fleet/util/codepoints/test/BUILD.bazel +++ b/fleet/util/codepoints/test/BUILD.bazel @@ -9,6 +9,12 @@ create_kotlinc_options( x_lambdas = "class" ) +jvm_library( + name = "test", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True, exclude = ["**/module-info.java"]) +) + jvm_library( name = "test_test_lib", module_name = "fleet.util.codepoints.test", diff --git a/libraries/dokka/BUILD.bazel b/libraries/dokka/BUILD.bazel index 32c683796b13..f7049607f401 100644 --- a/libraries/dokka/BUILD.bazel +++ b/libraries/dokka/BUILD.bazel @@ -1,3 +1,9 @@ ### auto-generated section `build intellij.libraries.dokka` start load("@rules_jvm//:jvm.bzl", "jvm_library") + +jvm_library( + name = "dokka", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) ### auto-generated section `build intellij.libraries.dokka` end \ No newline at end of file diff --git a/platform/build-scripts/codeOptimizer/BUILD.bazel b/platform/build-scripts/codeOptimizer/BUILD.bazel index 80db025236f5..c7e59338ab44 100644 --- a/platform/build-scripts/codeOptimizer/BUILD.bazel +++ b/platform/build-scripts/codeOptimizer/BUILD.bazel @@ -7,6 +7,12 @@ resourcegroup( strip_prefix = "testResources" ) +jvm_library( + name = "codeOptimizer", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "codeOptimizer_test_lib", module_name = "intellij.platform.buildScripts.codeOptimizer", diff --git a/platform/build-scripts/tests/BUILD.bazel b/platform/build-scripts/tests/BUILD.bazel index 9afd2b294987..847538b6b6a6 100644 --- a/platform/build-scripts/tests/BUILD.bazel +++ b/platform/build-scripts/tests/BUILD.bazel @@ -7,6 +7,12 @@ resourcegroup( strip_prefix = "testResources" ) +jvm_library( + name = "tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "tests_test_lib", module_name = "intellij.platform.buildScripts.tests", diff --git a/platform/compose/markdown/BUILD.bazel b/platform/compose/markdown/BUILD.bazel index 50cc50b83722..6de14a78695b 100644 --- a/platform/compose/markdown/BUILD.bazel +++ b/platform/compose/markdown/BUILD.bazel @@ -31,6 +31,7 @@ jvm_library( "//platform/jewel/markdown/extensions/gfm-tables", "//platform/jewel/markdown/extensions/images", "//platform/jewel/markdown/ide-laf-bridge-styling", - ] + ], + plugins = ["@lib//:compose-plugin"] ) ### auto-generated section `build intellij.platform.compose.markdown` end \ No newline at end of file diff --git a/platform/core-nio-fs/BUILD.bazel b/platform/core-nio-fs/BUILD.bazel index e677515daed0..57f57405aac3 100644 --- a/platform/core-nio-fs/BUILD.bazel +++ b/platform/core-nio-fs/BUILD.bazel @@ -27,6 +27,12 @@ jvm_library( ### auto-generated section `build intellij.platform.core.nio.fs` end ### auto-generated section `build intellij.platform.core.nio.fs.tests` start +jvm_library( + name = "core-nio-fs-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "core-nio-fs-tests_test_lib", module_name = "intellij.platform.core.nio.fs.tests", diff --git a/platform/eel/BUILD.bazel b/platform/eel/BUILD.bazel index 38f11aae67d2..4f61eb11808c 100644 --- a/platform/eel/BUILD.bazel +++ b/platform/eel/BUILD.bazel @@ -65,6 +65,12 @@ jps_test( ### auto-generated section `test intellij.platform.eel.codegen` end ### auto-generated section `build intellij.platform.eel.tests` start +jvm_library( + name = "eel-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "eel-tests_test_lib", module_name = "intellij.platform.eel.tests", diff --git a/platform/external-system-api/dependency-updater/BUILD.bazel b/platform/external-system-api/dependency-updater/BUILD.bazel index bef225afc456..9af923856708 100644 --- a/platform/external-system-api/dependency-updater/BUILD.bazel +++ b/platform/external-system-api/dependency-updater/BUILD.bazel @@ -33,6 +33,12 @@ resourcegroup( strip_prefix = "testData" ) +jvm_library( + name = "externalSystem-dependencyUpdater-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "externalSystem-dependencyUpdater-tests_test_lib", module_name = "intellij.platform.externalSystem.dependencyUpdater.tests", diff --git a/platform/instanceContainer/BUILD.bazel b/platform/instanceContainer/BUILD.bazel index 834cae958af4..0aaacf58e0cf 100644 --- a/platform/instanceContainer/BUILD.bazel +++ b/platform/instanceContainer/BUILD.bazel @@ -17,6 +17,12 @@ jvm_library( ### auto-generated section `build intellij.platform.instanceContainer` end ### auto-generated section `build intellij.platform.instanceContainer.tests` start +jvm_library( + name = "instanceContainer-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "instanceContainer-tests_test_lib", module_name = "intellij.platform.instanceContainer.tests", diff --git a/platform/jewel/int-ui/int-ui-decorated-window/BUILD.bazel b/platform/jewel/int-ui/int-ui-decorated-window/BUILD.bazel index ee598a3ecff3..1ea400d6e381 100644 --- a/platform/jewel/int-ui/int-ui-decorated-window/BUILD.bazel +++ b/platform/jewel/int-ui/int-ui-decorated-window/BUILD.bazel @@ -34,6 +34,7 @@ jvm_library( "//libraries/compose-foundation-desktop", "//platform/jewel/foundation", "//platform/jewel/int-ui/int-ui-standalone:jewel-intUi-standalone", - ] + ], + plugins = ["@lib//:compose-plugin"] ) ### auto-generated section `build intellij.platform.jewel.intUi.decoratedWindow` end \ No newline at end of file diff --git a/platform/jewel/int-ui/int-ui-standalone-tests/BUILD.bazel b/platform/jewel/int-ui/int-ui-standalone-tests/BUILD.bazel index f4580ee041b0..ed2608ae765f 100644 --- a/platform/jewel/int-ui/int-ui-standalone-tests/BUILD.bazel +++ b/platform/jewel/int-ui/int-ui-standalone-tests/BUILD.bazel @@ -14,6 +14,12 @@ create_kotlinc_options( x_explicit_api_mode = "strict" ) +jvm_library( + name = "jewel-intUi-standalone-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "jewel-intUi-standalone-tests_test_lib", module_name = "intellij.platform.jewel.intUi.standalone.tests", diff --git a/platform/jewel/ui-tests/BUILD.bazel b/platform/jewel/ui-tests/BUILD.bazel index d444facd647f..29bcd7cd833e 100644 --- a/platform/jewel/ui-tests/BUILD.bazel +++ b/platform/jewel/ui-tests/BUILD.bazel @@ -19,6 +19,12 @@ resourcegroup( strip_prefix = "src/test/resources" ) +jvm_library( + name = "ui-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "ui-tests_test_lib", module_name = "intellij.platform.jewel.uiTests", diff --git a/platform/platform-tests/benchmarks/BUILD.bazel b/platform/platform-tests/benchmarks/BUILD.bazel index cc4d4c8b2c2d..8cee9d8ad9b5 100644 --- a/platform/platform-tests/benchmarks/BUILD.bazel +++ b/platform/platform-tests/benchmarks/BUILD.bazel @@ -9,6 +9,12 @@ kt_javac_options( no_proc = False ) +jvm_library( + name = "benchmarks", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "benchmarks_test_lib", module_name = "intellij.platform.benchmarks", diff --git a/platform/platform-tests/durability/BUILD.bazel b/platform/platform-tests/durability/BUILD.bazel index 21ad332ab0a7..35baa2990295 100644 --- a/platform/platform-tests/durability/BUILD.bazel +++ b/platform/platform-tests/durability/BUILD.bazel @@ -10,6 +10,12 @@ create_kotlinc_options( ] ) +jvm_library( + name = "durability", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "durability_test_lib", module_name = "intellij.platform.durability", diff --git a/platform/polySymbols/BUILD.bazel b/platform/polySymbols/BUILD.bazel index ffad7f31d3ac..73c048070a6c 100644 --- a/platform/polySymbols/BUILD.bazel +++ b/platform/polySymbols/BUILD.bazel @@ -77,6 +77,12 @@ resourcegroup( strip_prefix = "testData" ) +jvm_library( + name = "polySymbols-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "polySymbols-tests_test_lib", module_name = "intellij.platform.polySymbols.tests", diff --git a/platform/util/immutable-key-value-store/benchmark/BUILD.bazel b/platform/util/immutable-key-value-store/benchmark/BUILD.bazel index a32c9716dbd8..a6d4f8073ab0 100644 --- a/platform/util/immutable-key-value-store/benchmark/BUILD.bazel +++ b/platform/util/immutable-key-value-store/benchmark/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build intellij.platform.util.immutableKeyValueStore.benchmark` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "benchmark", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "benchmark_test_lib", module_name = "intellij.platform.util.immutableKeyValueStore.benchmark", diff --git a/plugins/compose/intellij.compose.ide.plugin.k1/BUILD.bazel b/plugins/compose/intellij.compose.ide.plugin.k1/BUILD.bazel index c7e2de908d27..1bbc871c0bcd 100644 --- a/plugins/compose/intellij.compose.ide.plugin.k1/BUILD.bazel +++ b/plugins/compose/intellij.compose.ide.plugin.k1/BUILD.bazel @@ -45,6 +45,12 @@ jvm_library( ### auto-generated section `build intellij.compose.ide.plugin.k1` end ### auto-generated section `build intellij.compose.ide.plugin.k1.tests` start +jvm_library( + name = "ide-plugin-k1-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "ide-plugin-k1-tests_test_lib", visibility = ["//visibility:public"], diff --git a/plugins/compose/intellij.compose.ide.plugin.projectStructureTests/BUILD.bazel b/plugins/compose/intellij.compose.ide.plugin.projectStructureTests/BUILD.bazel index a9dd70df9223..2971ef5d11d1 100644 --- a/plugins/compose/intellij.compose.ide.plugin.projectStructureTests/BUILD.bazel +++ b/plugins/compose/intellij.compose.ide.plugin.projectStructureTests/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build intellij.compose.ide.plugin.projectStructureTests` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "ide-plugin-projectStructureTests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "ide-plugin-projectStructureTests_test_lib", module_name = "intellij.compose.ide.plugin.projectStructureTests", diff --git a/plugins/evaluation-plugin/BUILD.bazel b/plugins/evaluation-plugin/BUILD.bazel index fa1fb708bb6b..db600f05fed8 100644 --- a/plugins/evaluation-plugin/BUILD.bazel +++ b/plugins/evaluation-plugin/BUILD.bazel @@ -48,6 +48,12 @@ jvm_library( ### auto-generated section `build intellij.evaluationPlugin` end ### auto-generated section `build intellij.evaluationPlugin.tests` start +jvm_library( + name = "evaluationPlugin-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "evaluationPlugin-tests_test_lib", module_name = "intellij.evaluationPlugin.tests", diff --git a/plugins/gradle/gradle-declarative-sync/BUILD.bazel b/plugins/gradle/gradle-declarative-sync/BUILD.bazel index 41c0e2f77c15..b55f706f1426 100644 --- a/plugins/gradle/gradle-declarative-sync/BUILD.bazel +++ b/plugins/gradle/gradle-declarative-sync/BUILD.bazel @@ -33,6 +33,12 @@ jvm_library( ### auto-generated section `build intellij.gradle.declarativeSync` end ### auto-generated section `build intellij.gradle.declarativeSync.tests` start +jvm_library( + name = "declarativeSync-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "declarativeSync-tests_test_lib", module_name = "intellij.gradle.declarativeSync.tests", diff --git a/plugins/gradle/native/tooling/BUILD.bazel b/plugins/gradle/native/tooling/BUILD.bazel index 9ecafea59ff6..db2adead3d44 100644 --- a/plugins/gradle/native/tooling/BUILD.bazel +++ b/plugins/gradle/native/tooling/BUILD.bazel @@ -36,6 +36,12 @@ jvm_library( ### auto-generated section `build intellij.gradle.native.tooling` end ### auto-generated section `build intellij.gradle.native.tooling.tests` start +jvm_library( + name = "gradle-native-tooling-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "gradle-native-tooling-tests_test_lib", module_name = "intellij.gradle.native.tooling.tests", diff --git a/plugins/junit/groovy-tests/BUILD.bazel b/plugins/junit/groovy-tests/BUILD.bazel index 696f21ab308a..0e02ed78e08d 100644 --- a/plugins/junit/groovy-tests/BUILD.bazel +++ b/plugins/junit/groovy-tests/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build intellij.junit.groovy.tests` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "groovy-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "groovy-tests_test_lib", module_name = "intellij.junit.groovy.tests", diff --git a/plugins/junit6_rt_tests/BUILD.bazel b/plugins/junit6_rt_tests/BUILD.bazel index 39eb42c433a1..0fef9aedd813 100644 --- a/plugins/junit6_rt_tests/BUILD.bazel +++ b/plugins/junit6_rt_tests/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build intellij.junit.v6.rt.tests` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "junit-v6-rt-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "junit-v6-rt-tests_test_lib", module_name = "intellij.junit.v6.rt.tests", diff --git a/plugins/kotlin/gradle/multiplatform-tests-k2/BUILD.bazel b/plugins/kotlin/gradle/multiplatform-tests-k2/BUILD.bazel index 2650aec37453..a5cd173e07b0 100644 --- a/plugins/kotlin/gradle/multiplatform-tests-k2/BUILD.bazel +++ b/plugins/kotlin/gradle/multiplatform-tests-k2/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build intellij.kotlin.gradle.multiplatform.tests` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "kotlin-gradle-multiplatform-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "kotlin-gradle-multiplatform-tests_test_lib", module_name = "intellij.kotlin.gradle.multiplatform.tests", diff --git a/plugins/kotlin/gradle/multiplatform-tests/BUILD.bazel b/plugins/kotlin/gradle/multiplatform-tests/BUILD.bazel index 089398ddff83..5d727ea3c381 100644 --- a/plugins/kotlin/gradle/multiplatform-tests/BUILD.bazel +++ b/plugins/kotlin/gradle/multiplatform-tests/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build intellij.kotlin.gradle.multiplatformTests` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "multiplatform-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "multiplatform-tests_test_lib", module_name = "intellij.kotlin.gradle.multiplatformTests", diff --git a/plugins/kotlin/util/test-generator-all/BUILD.bazel b/plugins/kotlin/util/test-generator-all/BUILD.bazel index ef590af95587..dcccc5735d78 100644 --- a/plugins/kotlin/util/test-generator-all/BUILD.bazel +++ b/plugins/kotlin/util/test-generator-all/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build kotlin.util.test-generator-all` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "test-generator-all", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "test-generator-all_test_lib", module_name = "kotlin.util.test-generator-all", diff --git a/plugins/maven-server-api/test/BUILD.bazel b/plugins/maven-server-api/test/BUILD.bazel index 4fb876bb129a..31d068e1b26c 100644 --- a/plugins/maven-server-api/test/BUILD.bazel +++ b/plugins/maven-server-api/test/BUILD.bazel @@ -1,6 +1,12 @@ ### auto-generated section `build intellij.maven.server.tests` start load("@rules_jvm//:jvm.bzl", "jvm_library") +jvm_library( + name = "maven-server-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "maven-server-tests_test_lib", module_name = "intellij.maven.server.tests", diff --git a/plugins/settings-repository/BUILD.bazel b/plugins/settings-repository/BUILD.bazel index 25a37c5ce887..ade01ebba0df 100644 --- a/plugins/settings-repository/BUILD.bazel +++ b/plugins/settings-repository/BUILD.bazel @@ -54,6 +54,12 @@ jvm_library( ### auto-generated section `build intellij.settingsRepository` end ### auto-generated section `build intellij.settingsRepository.tests` start +jvm_library( + name = "settingsRepository-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "settingsRepository-tests_test_lib", module_name = "intellij.settingsRepository.tests", diff --git a/plugins/sh/copyright/BUILD.bazel b/plugins/sh/copyright/BUILD.bazel index 26fc982e570e..1197daea4b97 100644 --- a/plugins/sh/copyright/BUILD.bazel +++ b/plugins/sh/copyright/BUILD.bazel @@ -26,6 +26,12 @@ jvm_library( ### auto-generated section `build intellij.sh.copyright` end ### auto-generated section `build intellij.sh.copyright.tests` start +jvm_library( + name = "copyright-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "copyright-tests_test_lib", module_name = "intellij.sh.copyright.tests", diff --git a/plugins/sh/core/BUILD.bazel b/plugins/sh/core/BUILD.bazel index 1a3091013b6f..c2c86cb914d3 100644 --- a/plugins/sh/core/BUILD.bazel +++ b/plugins/sh/core/BUILD.bazel @@ -40,6 +40,12 @@ jvm_library( ### auto-generated section `build intellij.sh.core` end ### auto-generated section `build intellij.sh.tests` start +jvm_library( + name = "tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "tests_test_lib", module_name = "intellij.sh.tests", diff --git a/plugins/turboComplete/BUILD.bazel b/plugins/turboComplete/BUILD.bazel index 6d69cb0db128..4a5221de603b 100644 --- a/plugins/turboComplete/BUILD.bazel +++ b/plugins/turboComplete/BUILD.bazel @@ -33,6 +33,12 @@ jvm_library( ### auto-generated section `build intellij.turboComplete` end ### auto-generated section `build intellij.turboComplete.tests` start +jvm_library( + name = "turboComplete-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "turboComplete-tests_test_lib", module_name = "intellij.turboComplete.tests", diff --git a/python/BUILD.bazel b/python/BUILD.bazel index 6ded953675d6..f089950ba471 100644 --- a/python/BUILD.bazel +++ b/python/BUILD.bazel @@ -618,6 +618,12 @@ resourcegroup( strip_prefix = "helpersTestResources" ) +jvm_library( + name = "python-helpers-tests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "python-helpers-tests_test_lib", module_name = "intellij.python.helpers.tests", diff --git a/python/build/build-debug-binaries/BUILD.bazel b/python/build/build-debug-binaries/BUILD.bazel index 91440c1f4ef1..fc17ecee068f 100644 --- a/python/build/build-debug-binaries/BUILD.bazel +++ b/python/build/build-debug-binaries/BUILD.bazel @@ -1,3 +1,9 @@ ### auto-generated section `build intellij.pycharm.community.build.debugBinaries` start load("@rules_jvm//:jvm.bzl", "jvm_library") + +jvm_library( + name = "pycharm-community-build-debugBinaries", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) ### auto-generated section `build intellij.pycharm.community.build.debugBinaries` end \ No newline at end of file diff --git a/tools/intellij.lambda.sampleTests/BUILD.bazel b/tools/intellij.lambda.sampleTests/BUILD.bazel index 204a48a59b98..53b40e26ce12 100644 --- a/tools/intellij.lambda.sampleTests/BUILD.bazel +++ b/tools/intellij.lambda.sampleTests/BUILD.bazel @@ -7,6 +7,12 @@ create_kotlinc_options( x_context_parameters = True ) +jvm_library( + name = "lambda-sampleTests", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "lambda-sampleTests_test_lib", module_name = "intellij.lambda.sampleTests", diff --git a/tools/intellij.lambda.sampleTestsWithFixtures/BUILD.bazel b/tools/intellij.lambda.sampleTestsWithFixtures/BUILD.bazel index 31d7400de69e..06439a14ea62 100644 --- a/tools/intellij.lambda.sampleTestsWithFixtures/BUILD.bazel +++ b/tools/intellij.lambda.sampleTestsWithFixtures/BUILD.bazel @@ -13,6 +13,12 @@ resourcegroup( strip_prefix = "resources" ) +jvm_library( + name = "lambda-sampleTestsWithFixtures", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "lambda-sampleTestsWithFixtures_test_lib", module_name = "intellij.lambda.sampleTestsWithFixtures", diff --git a/tools/intellij.lambda.sampleTestsWithFixtures/plugin/BUILD.bazel b/tools/intellij.lambda.sampleTestsWithFixtures/plugin/BUILD.bazel index 6b8db4083be4..305d45a81371 100644 --- a/tools/intellij.lambda.sampleTestsWithFixtures/plugin/BUILD.bazel +++ b/tools/intellij.lambda.sampleTestsWithFixtures/plugin/BUILD.bazel @@ -7,6 +7,12 @@ resourcegroup( strip_prefix = "testResources" ) +jvm_library( + name = "plugin", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "plugin_test_lib", module_name = "intellij.lambda.sampleTestsWithFixtures.plugin", diff --git a/tools/intellij.lambda.sampleTestsWithPlugin/BUILD.bazel b/tools/intellij.lambda.sampleTestsWithPlugin/BUILD.bazel index 0d4fd4fc1e7b..35b9823d81b1 100644 --- a/tools/intellij.lambda.sampleTestsWithPlugin/BUILD.bazel +++ b/tools/intellij.lambda.sampleTestsWithPlugin/BUILD.bazel @@ -13,6 +13,12 @@ resourcegroup( strip_prefix = "resources" ) +jvm_library( + name = "lambda-sampleTestsWithPlugin", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "lambda-sampleTestsWithPlugin_test_lib", module_name = "intellij.lambda.sampleTestsWithPlugin", diff --git a/tools/intellij.lambda.sampleTestsWithPlugin/plugin/BUILD.bazel b/tools/intellij.lambda.sampleTestsWithPlugin/plugin/BUILD.bazel index 106fe20b071e..013844e371e9 100644 --- a/tools/intellij.lambda.sampleTestsWithPlugin/plugin/BUILD.bazel +++ b/tools/intellij.lambda.sampleTestsWithPlugin/plugin/BUILD.bazel @@ -7,6 +7,12 @@ resourcegroup( strip_prefix = "testResources" ) +jvm_library( + name = "plugin", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "plugin_test_lib", module_name = "intellij.lambda.sampleTestsWithPlugin.plugin", diff --git a/tools/intellij.lambda.testFramework/plugin/BUILD.bazel b/tools/intellij.lambda.testFramework/plugin/BUILD.bazel index f364655d4a76..52ada07ab38d 100644 --- a/tools/intellij.lambda.testFramework/plugin/BUILD.bazel +++ b/tools/intellij.lambda.testFramework/plugin/BUILD.bazel @@ -7,6 +7,12 @@ resourcegroup( strip_prefix = "testResources" ) +jvm_library( + name = "plugin", + visibility = ["//visibility:public"], + srcs = glob([], allow_empty = True) +) + jvm_library( name = "plugin_test_lib", module_name = "intellij.lambda.test.plugin",