Skip to content

Commit

Permalink
Merge ae586d6 into dff55b6
Browse files Browse the repository at this point in the history
  • Loading branch information
VinayGuthal authored Aug 24, 2023
2 parents dff55b6 + ae586d6 commit 0868375
Show file tree
Hide file tree
Showing 18 changed files with 1,093 additions and 102 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ buildscript {
}

dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.2'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:1.3.0'
classpath 'gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.9'
classpath 'com.google.gms:google-services:4.3.15'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,22 @@ class FirebaseLibraryPlugin : BaseFirebaseLibraryPlugin() {
android.testServer(FirebaseTestServer(project, firebaseLibrary.testLab, android))
setupStaticAnalysis(project, firebaseLibrary)
getIsPomValidTask(project, firebaseLibrary)
<<<<<<< HEAD
getSemverTaskAar(project, firebaseLibrary)
getPackageTransform(project, firebaseLibrary)
configurePublishing(project, firebaseLibrary, android)
}

private fun getPackageTransform(project: Project, firebaseLibrary: FirebaseLibraryExtension) {
project.tasks.register<PackageTransform>("packageTransform") {
groupId.set(firebaseLibrary.groupId.get())
artifactId.set(firebaseLibrary.artifactId.get())
projectPath.set(project.projectDir.absolutePath)
}
}

private fun getSemverTaskAar(project: Project, firebaseLibrary: FirebaseLibraryExtension) {
=======
setupVersionCheckTasks(project, firebaseLibrary)
configurePublishing(project, firebaseLibrary, android)
}
Expand Down
Loading

0 comments on commit 0868375

Please sign in to comment.