NTP-1234 | Moving Android Resources from Medici to SA (#16551)

This commit is contained in:
Shivam Goyal
2025-06-12 17:35:40 +05:30
committed by GitHub
parent 5eccff6ebe
commit 50de8f485e
2 changed files with 8 additions and 13 deletions

View File

@@ -228,8 +228,7 @@ publishing {
repositories {
if (project.hasProperty('NEXUS_URL')
&& project.hasProperty('NEXUS_USERNAME')
&& project.hasProperty('NEXUS_PASSWORD')
) {
&& project.hasProperty('NEXUS_PASSWORD')) {
maven {
url = "$NEXUS_URL"
credentials {
@@ -240,14 +239,12 @@ publishing {
}
}
publications {
if (project.hasProperty('FLAVOR')) {
maven(MavenPublication) {
artifactId = "$FLAVOR"
groupId = "com.naviapp"
version = "navi_v$VERSION_NAME"
maven(MavenPublication) {
version = "$VERSION_NAME"
artifactId = "super-app"
groupId = "com.navi.android"
artifact("build/outputs/bundle/prodRelease/app-prod-release.aab")
}
artifact("build/outputs/bundle/prodRelease/app-prod-release.aab")
}
}
}