File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
main/java/com/google/firebase/gradle/plugins
test/kotlin/com/google/firebase/gradle/plugins Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff 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))
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments