Open thomasbao12 opened 10 months ago
I posted in bazel_jar_jar's github as well, in case it's an issue with their use of jarjar-abrams: https://github.com/bazeltools/bazel_jar_jar/issues/46
I used bazel_jar_jar to relocate graphql to graphql13 in this lib:
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"], )
When I look at the decompiled class files, I see import graphql13..., but for the same class, in the kotlin metadata annotation, I see graphql/schema:
import graphql13...
I posted in bazel_jar_jar's github as well, in case it's an issue with their use of jarjar-abrams: https://github.com/bazeltools/bazel_jar_jar/issues/46
I used bazel_jar_jar to relocate graphql to graphql13 in this lib:
When I look at the decompiled class files, I see
import graphql13...
, but for the same class, in the kotlin metadata annotation, I see graphql/schema: