We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Even using the latest commit 57067a1beec4ce5c7ee97ec25bb666b6fad6b160, bazel_jar_jar will not update the kotlin metadata in the bytecode.
57067a1beec4ce5c7ee97ec25bb666b6fad6b160
Repro:
jar_jar( name = "graphql_kotlin_schema_generator_shaded", inline_rules = ["rule graphql.** graphql13.@1"], input_jar = "@maven//:com_expediagroup_graphql_kotlin_schema_generator", visibility = ["//visibility:private"], )
where this is the resolved maven coordinate: ("com.expediagroup", "graphql-kotlin-schema-generator", "1.0.0-RC11").
IF you look at the shaded jar, you'll see the following
Note that the import statement is changed correctly, but the kotlin metadata d2 field is not.
This will lead to compilation errors, where the inferred type and expected type do not match.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Even using the latest commit
57067a1beec4ce5c7ee97ec25bb666b6fad6b160
, bazel_jar_jar will not update the kotlin metadata in the bytecode.Repro:
where this is the resolved maven coordinate: ("com.expediagroup", "graphql-kotlin-schema-generator", "1.0.0-RC11").
IF you look at the shaded jar, you'll see the following
Note that the import statement is changed correctly, but the kotlin metadata d2 field is not.
This will lead to compilation errors, where the inferred type and expected type do not match.
The text was updated successfully, but these errors were encountered: