Skip to content

Commit

Permalink
Merge pull request #527 from gradle/iv/fix_incorrect_group_migration_…
Browse files Browse the repository at this point in the history
…logic

fix incorrect gav logic in the migration
  • Loading branch information
cdsap committed Jun 27, 2023
2 parents 085b622 + 5f25d5f commit 905a68b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ gradlePlugin {
// in the TestKit plugin classpath.
val localRepo = file("$buildDir/local-repo")

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

0 comments on commit 905a68b

Please sign in to comment.