Files
uitron/settings.gradle
Maila Rajanikanth 610e602e31 TP-52974 | screenshot testing in uitron poc (#291)
Co-authored-by: Aparna Vadlamani <aparna.vadlamani@navi.com>
2024-02-07 10:34:23 +00:00

38 lines
989 B
Groovy

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url 'https://jitpack.io' }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
credentials {
username 'nexus-user'
password 'nexus-user'
}
url "https://nexus.cmd.navi-tech.in/repository/maven-snapshots"
}
maven {
credentials {
username 'nexus-user'
password 'nexus-user'
}
url "https://nexus.cmd.navi-tech.in/repository/maven-releases"
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
}
rootProject.name = "UiTron"
include ':app'
include ':navi-uitron'
include ':benchmark'