This warning [pic] comes from the gradle plugin ri...
# apollo-kotlin
s
This warning [pic] comes from the gradle plugin right? I basically only have the introspection in the "schema module", and all other modules that depend on it just have more or less this
Copy code
apollo {
  service("octopus") {
    packageName.set("octopus")
    dependsOn(projects.ourSchemaModule, bidirectional = true)
  }
}
in their gradle configuration along with applying the apollo gradle plugin. Is this warning there because I am misconfiguring something else, or just that it's tricky to exclude these from this check and to differentiate them from the schema module?
b
The warning comes from the AS plugin actually - and you're right, in fact, it should't warn in this case!
🌟 1
s
Want me to file a GH issue perhaps?
Do those go to apollo-kotlin still?
b
that would be great 🙏 Yes still in the main repo
s