Skip to content

Commit 4c434be

Browse files
committed
Fix test failures
1 parent df4a63d commit 4c434be

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

buildSrc/src/main/java/com/google/firebase/gradle/plugins/FirebaseJavaLibraryPlugin.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ class FirebaseJavaLibraryPlugin : BaseFirebaseLibraryPlugin() {
5252
setupFirebaseLibraryExtension(project)
5353
registerMakeReleaseNotesTask(project)
5454

55+
project.apply<DackkaPlugin>()
56+
5557
// reduce the likelihood of kotlin module files colliding.
5658
project.tasks.withType<KotlinCompile> {
5759
kotlinOptions.freeCompilerArgs = ImmutableList.of("-module-name", kotlinModuleName(project))

buildSrc/src/test/kotlin/com/google/firebase/gradle/plugins/publishing.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ data class Project(
4646
version = '$version'
4747
${if (latestReleasedVersion != null) "ext.latestReleasedVersion = $latestReleasedVersion" else ""}
4848
firebaseLibrary {
49-
${if (libraryGroup != null) "libraryGroup '$libraryGroup'" else ""}
49+
${if (libraryGroup != null) "libraryGroup = '$libraryGroup'" else ""}
5050
${if (customizePom != null) "customizePom {$customizePom}" else ""}
5151
${"publishJavadoc = $publishJavadoc"}
5252
}

0 commit comments

Comments
 (0)