2023-04-07 16:30:15 +05:30
|
|
|
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' }
|
2023-04-08 02:29:02 +05:30
|
|
|
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"
|
|
|
|
|
}
|
2024-02-07 16:04:23 +05:30
|
|
|
maven {
|
|
|
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots/'
|
|
|
|
|
}
|
2023-04-07 16:30:15 +05:30
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
rootProject.name = "UiTron"
|
|
|
|
|
include ':app'
|
2023-04-07 16:33:30 +05:30
|
|
|
include ':navi-uitron'
|
2023-07-13 19:43:22 +05:30
|
|
|
include ':benchmark'
|