For the complete documentation index, see llms.txt. This page is also available as Markdown.

Step 1: Repository

Dependency Resolution Management


Declaration of the repository

In the build.gradle file at the root of your project, add the following:

repositories {
    ...
    maven {
        url "https://artifactory.datalf.chat/artifactory/appconsent"
    }
}

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

In your settings.gradle file, at the root of your project, add the following:

dependencyResolutionManagement {
    ...
    repositories {
        ...
        maven {
            url "https://artifactory.datalf.chat/artifactory/appconsent"
        }
    }
}

Last updated