project
Creates a Gradle project dependency.
Note: The created dependency should be manually added to this entity using other methods from this DSL:
kotlin.sourceSets["jvmMain"].dependencies {
implementation(project(":my-library", "customLibraryConfiguration"))
}
Content copied to clipboard
Parameters
path
The project path
configuration
The optional target configuration in the project
Creates a Gradle project dependency.
Note: The created dependency should be manually added to this entity using other methods from this DSL:
kotlin.sourceSets["jvmMain"].dependencies {
implementation(project(mapOf("path" to ":project-a", "configuration" to "someOtherConfiguration")))
}
Content copied to clipboard
Parameters
notation
Project notation described in DependencyHandler.