We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 81f4786 + a52a412 commit 53a7d82Copy full SHA for 53a7d82
java/kotlin-extractor/BUILD.bazel
@@ -113,7 +113,12 @@ kt_javac_options(
113
"src/**/*.kt",
114
"src/**/*.java",
115
],
116
- exclude = ["src/main/kotlin/utils/versions/**"],
+ exclude = [
117
+ # a specific version is included back by `get_compatibility_sources`
118
+ "src/main/kotlin/utils/versions/**",
119
+ # this appears if `generated_dbscheme.py` is run manually, while we want the one built by bazel
120
+ "src/main/kotlin/KotlinExtractorDbScheme.kt",
121
+ ],
122
) + get_compatilibity_sources(v, "src/main/kotlin/utils/versions"),
123
javac_opts = ":javac-options",
124
kotlinc_opts = ":kotlinc-options-%s" % v,
0 commit comments