Files
uitron/settings.gradle

38 lines
989 B
Groovy
Raw Normal View History

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"
}
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'
include ':benchmark'