From 1fc7c0f8caba3760051f66000686dd65f76b36cc Mon Sep 17 00:00:00 2001 From: ArjunaKumarMohanta Date: Tue, 7 Mar 2023 16:13:21 +0530 Subject: [PATCH] build: Update guava, shadow and proguard dependencies (#3020) * Upgrade `guava` to `31.1-jre` from `31.0.1-jre` * Upgrade `proguard_gradle` to `7.3.1` from `7.3.0` * Upgrade `shadow` to `8.0.0` from `7.1.0` --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index b83c4509..9bfee7c1 100644 --- a/build.gradle +++ b/build.gradle @@ -23,9 +23,9 @@ buildscript { commons_io : 'commons-io:commons-io:2.11.0', commons_lang : 'org.apache.commons:commons-lang3:3.12.0', commons_text : 'org.apache.commons:commons-text:1.10.0', - guava : 'com.google.guava:guava:31.0.1-jre', + guava : 'com.google.guava:guava:31.1-jre', junit : 'junit:junit:4.13.2', - proguard_gradle: 'com.guardsquare:proguard-gradle:7.3.0', + proguard_gradle: 'com.guardsquare:proguard-gradle:7.3.1', snakeyaml : 'org.yaml:snakeyaml:1.32:android', smali : 'com.github.iBotPeaches.smali:smali:403e90375e', xmlpull : 'xpp3:xpp3:1.1.4c', @@ -37,7 +37,7 @@ buildscript { gradlePluginPortal() } dependencies { - classpath "gradle.plugin.com.github.johnrengelman:shadow:7.1.0" + classpath "gradle.plugin.com.github.johnrengelman:shadow:8.0.0" classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1" } }