Skip to content

Commit 905a68b

Browse files
authored
Merge pull request #527 from gradle/iv/fix_incorrect_group_migration_logic
fix incorrect gav logic in the migration
2 parents 085b622 + 5f25d5f commit 905a68b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ gradlePlugin {
8282
// in the TestKit plugin classpath.
8383
val localRepo = file("$buildDir/local-repo")
8484

85-
val isProdPortal = System.getProperty("gradle.portal.url") != null
85+
val isProdPortal = System.getProperty("gradle.portal.url") == null
8686
// The legacy groupId gradle.plugin.* is only allowed when the plugin
8787
// has already been published
8888
val pluginGroupId = if (isCI && isProdPortal) "gradle.plugin.org.gradle.android" else project.group

0 commit comments

Comments
 (0)