mirror of
https://github.com/revanced/multidexlib2.git
synced 2025-04-29 22:24:28 +02:00
Fix 'bootClasspath' deprecation
This commit is contained in:
parent
63d7b4f5d6
commit
dabe92a6c2
@ -23,7 +23,7 @@ version = dexlib2Version + multidexlib2VersionSuffix
|
||||
sourceCompatibility = '1.7'
|
||||
def jdk = findProperty('JDK7_HOME') ?: '/usr/lib/jvm/java-7-openjdk-amd64'
|
||||
def jdk_rt = new File(jdk, 'jre/lib/rt.jar')
|
||||
if (jdk_rt.exists()) compileJava.options.bootClasspath = jdk_rt
|
||||
if (jdk_rt.exists()) compileJava.options.bootstrapClasspath = files(jdk_rt)
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
|
Loading…
x
Reference in New Issue
Block a user