We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f81a92 commit 913e666Copy full SHA for 913e666
buildSrc/src/main/java/com/google/firebase/gradle/plugins/PublishingPlugin.kt
@@ -309,7 +309,8 @@ abstract class PublishingPlugin : Plugin<Project> {
309
val missingProjects = libraryGroupProjects - releasinglibraries
310
if (missingProjects.isNotEmpty()) {
311
throw GradleException(
312
- "Some libraries in library groups are not in the release: ${missingProjects.map { it.mavenName }.joinToString("\n")}"
+ "Some libraries in library groups are not in the release: " +
313
+ missingProjects.map { it.mavenName }.joinToString("\n")
314
)
315
}
316
0 commit comments