Skip to main content

Dependency Resolution Management


Declaration of the repository

Gradle < 6.8

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"
}
}

Gradle >= 6.8

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")
}
}
}