File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
buildSrc/src/main/java/com/google/firebase/gradle/plugins Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ buildscript {
36
36
}
37
37
38
38
dependencies {
39
- classpath ' com.google.protobuf:protobuf-gradle-plugin:0.8.14 '
39
+ classpath ' com.google.protobuf:protobuf-gradle-plugin:0.9.2 '
40
40
classpath ' net.ltgt.gradle:gradle-errorprone-plugin:1.3.0'
41
41
classpath ' gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.9'
42
42
classpath ' com.google.gms:google-services:4.3.15'
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public static void apply(FirebaseLibraryExtension firebaseLibrary) {
36
36
JacocoPluginExtension jacoco = project .getExtensions ().getByType (JacocoPluginExtension .class );
37
37
38
38
jacoco .setToolVersion ("0.8.8" );
39
- jacoco .setReportsDir (reportsDir );
39
+ jacoco .getReportsDirectory (). set (reportsDir );
40
40
project
41
41
.getTasks ()
42
42
.withType (
Original file line number Diff line number Diff line change 32
32
import org .gradle .api .tasks .Input ;
33
33
import org .gradle .api .tasks .OutputDirectory ;
34
34
import org .gradle .api .tasks .TaskAction ;
35
- import org .gradle .api . tasks . incremental . IncrementalTaskInputs ;
35
+ import org .gradle .work . InputChanges ;
36
36
37
37
abstract class GenerateLicensesTask extends DefaultTask {
38
38
private static final int NEW_LINE_LENGTH = "\n " .getBytes ().length ;
@@ -56,7 +56,7 @@ public GenerateLicensesTask() {
56
56
}
57
57
58
58
@ TaskAction
59
- void execute (IncrementalTaskInputs inputs ) {
59
+ void execute (InputChanges inputs ) {
60
60
Set <URI > licenseUris = new HashSet <URI >();
61
61
for (ThirdPartyLicensesExtension .CustomLicense license : getadditionalLicenses ()) {
62
62
licenseUris .addAll (license .licenseUris );
You can’t perform that action at this time.
0 commit comments