How to access projects in multimodule Gradle project?
In a multimodule Gradle project, you're likely to have.. many modules. Each module can have other modules as dependencies.
dependencies {
implementation(project(":feature:feature-payment"))
implementation(project(":lib:crypto"))
implement...
aldok.hashnode.dev2 min read
Nigel Jones
Opensource maintainer for Egeria - open metadata
Aldo, this looks really useful.
However
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")must be added into settings.gradle, rather than build.gradle
I also wasn't able to get the auto-complete working in IntelliJ EAP