Update dependencies

This commit is contained in:
Goooler 2021-04-13 20:13:15 +08:00 committed by Connor Tumbleson
parent b3741409f5
commit f9c137009e

View File

@ -1,3 +1,5 @@
import java.nio.charset.StandardCharsets
/** /**
* Copyright 2014 Ryszard Wiśniewski <brut.alll@gmail.com> * Copyright 2014 Ryszard Wiśniewski <brut.alll@gmail.com>
* *
@ -15,10 +17,10 @@
*/ */
buildscript { buildscript {
repositories { repositories {
jcenter() mavenCentral()
} }
tasks.withType(JavaCompile) { tasks.withType(JavaCompile) {
options.encoding = "UTF-8" options.encoding = StandardCharsets.UTF_8.toString()
} }
dependencies { dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0' classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0'
@ -122,11 +124,11 @@ subprojects {
baksmali: 'org.smali:baksmali:2.5.2', baksmali: 'org.smali:baksmali:2.5.2',
commons_cli: 'commons-cli:commons-cli:1.4', commons_cli: 'commons-cli:commons-cli:1.4',
commons_io: 'commons-io:commons-io:2.4', commons_io: 'commons-io:commons-io:2.4',
commons_lang: 'org.apache.commons:commons-lang3:3.1', commons_lang: 'org.apache.commons:commons-lang3:3.12.0',
guava: 'com.google.guava:guava:14.0', guava: 'com.google.guava:guava:30.1.1-jre',
junit: 'junit:junit:4.12', junit: 'junit:junit:4.13.2',
proguard_gradle: 'com.guardsquare:proguard-gradle:7.0.0', proguard_gradle: 'com.guardsquare:proguard-gradle:7.0.0',
snakeyaml: 'org.yaml:snakeyaml:1.18:android', snakeyaml: 'org.yaml:snakeyaml:1.28:android',
smali: 'org.smali:smali:2.5.2', smali: 'org.smali:smali:2.5.2',
xmlpull: 'xpp3:xpp3:1.1.4c', xmlpull: 'xpp3:xpp3:1.1.4c',
xmlunit: 'xmlunit:xmlunit:1.6', xmlunit: 'xmlunit:xmlunit:1.6',
@ -216,7 +218,7 @@ subprojects {
withSourcesJar() withSourcesJar()
} }
tasks.getByPath(':release').dependsOn(publish); tasks.getByPath(':release').dependsOn(publish)
tasks.getByPath(':snapshot').dependsOn(publish); tasks.getByPath(':snapshot').dependsOn(publish)
} }
} }