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 0840f97 commit 3fb89b4Copy full SHA for 3fb89b4
buildSrc/src/main/java/com/google/firebase/gradle/plugins/PublishingPlugin.kt
@@ -290,15 +290,6 @@ abstract class PublishingPlugin : Plugin<Project> {
290
"or have a valid $RELEASE_CONFIG_FILE file at the root directory."
291
)
292
}
293
- val libraryGroupProjects =
294
- releasinglibraries.flatMap { it.projectsToRelease }.filterNotNull().toSet()
295
- val releasingProjects = releasinglibraries.mapNotNull { it.project }.toSet()
296
- if (!libraryGroupProjects.equals(releasingProjects)) {
297
- throw GradleException(
298
- "Some libraries in library groups are not in the release: " +
299
- Sets.difference(libraryGroupProjects, releasingProjects).map { it.displayName }
300
- )
301
- }
302
303
304
0 commit comments