2023-04-19 18:10:46 +05:30
|
|
|
plugins {
|
2024-01-04 17:55:52 +05:30
|
|
|
alias libs.plugins.android.application apply false
|
|
|
|
|
alias libs.plugins.android.library apply false
|
|
|
|
|
alias libs.plugins.firebase.crashlytics apply false
|
|
|
|
|
alias libs.plugins.kotlin.android apply false
|
|
|
|
|
alias libs.plugins.kotlin.parcelize apply false
|
|
|
|
|
alias libs.plugins.ksp apply false
|
|
|
|
|
alias libs.plugins.spotless
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
apply from: 'spotless.gradle'
|
|
|
|
|
apply from: 'projectDependencyGraph.gradle'
|
2024-05-05 08:40:19 -07:00
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
maven {
|
|
|
|
|
url 'https://nexus.cmd.navi-tech.in/repository/maven-snapshots'
|
|
|
|
|
credentials {
|
|
|
|
|
username 'nexus-user'
|
|
|
|
|
password 'nexus-user'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
maven {
|
|
|
|
|
url 'https://nexus.cmd.navi-tech.in/repository/maven-releases'
|
|
|
|
|
credentials {
|
|
|
|
|
username 'nexus-user'
|
|
|
|
|
password 'nexus-user'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|