Skip to content

Commit 264e999

Browse files
committed
Fix maven publishing breakage introduced in #6550.
1 parent c23b4bb commit 264e999

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,10 @@ ext.rustTargets += ext.nativeRustTarget
198198
ext.libsRootDir = useDownloadedLibs ? rootProject.buildDir : rootProject.rootDir
199199

200200
subprojects {
201-
// Note we apply some plugins to the subprojects in settings.gradle to help with the m-c migration.
202-
201+
group = "org.mozilla.appservices"
202+
if (!gradle.hasProperty("mozconfig")) {
203+
apply plugin: 'maven-publish'
204+
}
203205
// Kotlin settings applicable to all modules.
204206
afterEvaluate{
205207
if (it.hasProperty('android')) {

0 commit comments

Comments
 (0)