Dependency Resolution Management
Declaration of the repository
- Old Version
- New Kotlin
- New Groovy
In the build.gradle
file at the root of your project, add the following:
repositories {
...
maven {
url "https://artifactory.datalf.chat/artifactory/app-consent-v2-release"
}
}
In your settings.gradle.kts
file, at the root of your project, add the following :
dependencyResolutionManagement {
...
repositories {
...
maven {
url = uri("https://artifactory.datalf.chat/artifactory/app-consent-v2-release")
}
}
}
In your settings.gradle
file, at the root of your project, add the following :
dependencyResolutionManagement {
...
repositories {
...
maven {
url "https://artifactory.datalf.chat/artifactory/app-consent-v2-release"
}
}
}