This message was deleted.
# community-support
s
This message was deleted.
b
I think what you're seeing is different to me. I'm just trying to do share a single toml file between 2 projects, which i feel like should be easy as per: https://docs.gradle.org/7.2/userguide/platforms.html#sec:sharing-catalogs and whenever i add
Copy code
versionCatalogs {
  create("deps") {
    from(files("../gradle/libs.versions.toml"))
  }
}
to my composite build's
dependencyResolutionManagement
, it breaks everything. all of a sudden,
api
and
implementation
are missing. Remove the catalog and
api
/
implementation
come back. Makes no sense to me