This message was deleted.
# community-support
s
This message was deleted.
p
Statically placing the file path works though
Copy code
sourceSets {
        main {
            java {
                srcDirs("../components/build/generated/ap_generated_sources/release/out/")
                exclude("*.md", "*.json", "*.txt")
            }
        }
    }
v
This documents the proper way to publish files from one project and consume it in another: https://docs.gradle.org/current/userguide/cross_project_publications.html
p
How to get a configuration reference using typesafe project accessor?
v
Did you read the documentation I linked you to? Everything you need is described there.