Getting Started
Libraries
Installation
The libraries are hosted on a private Maven repository and their use is restricted to client companies. They come as regular build dependencies.
Setup your credentials
For security reasons and in order to not have to change your build.gradle when working with other people, we recommend that you keep your repository credentials in the gradle.properties of your USER_HOME/.gradle folder.
gradle.properties
st_repo_username=user
st_repo_password=password
Please take note of the fact that your username and password should not be surrounded by any quotation marks.
Add a maven repository
The private repo needs to be added to gradle repositories
build.gradle
repositories {
maven {
url "https://artifactory.scantrust.io/artifactory/libs-release-local"
credentials {
username = "${st_repo_username}"
password = "${st_repo_password}"
}
}
}
Add the desired dependencies
dependencies {
implementation "com.scantrust.consumer:name:x.y.z"
}