Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 1 | // Copyright (c) 2016, the R8 project authors. Please see the AUTHORS file |
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
| 4 | apply plugin: 'java' |
| 5 | apply plugin: 'idea' |
| 6 | |
| 7 | repositories { |
Søren Gjesse | 44faa87 | 2023-05-23 12:21:22 +0200 | [diff] [blame] | 8 | maven { |
| 9 | url uri('file:../third_party/dependencies') |
| 10 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 11 | } |
Morten Krogh-Jespersen | 5a37de8 | 2023-03-02 01:42:28 +0100 | [diff] [blame] | 12 | |
Clément Béra | c8b2c15 | 2022-06-22 08:23:47 +0200 | [diff] [blame] | 13 | ext { |
Søren Gjesse | 63a53a9 | 2023-05-03 14:33:02 +0200 | [diff] [blame] | 14 | guavaVersion = '31.1-jre' |
Ian Zerny | 0b4f14a | 2023-04-28 09:51:12 +0200 | [diff] [blame] | 15 | asmVersion = '9.5' |
Søren Gjesse | a599e65 | 2023-05-03 14:35:06 +0200 | [diff] [blame] | 16 | smaliVersion = '3.0.3' |
Clément Béra | c8b2c15 | 2022-06-22 08:23:47 +0200 | [diff] [blame] | 17 | } |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 18 | |
| 19 | dependencies { |
Søren Gjesse | 63a53a9 | 2023-05-03 14:33:02 +0200 | [diff] [blame] | 20 | implementation group: 'com.google.guava', name: 'guava', version: guavaVersion |
Søren Gjesse | a599e65 | 2023-05-03 14:35:06 +0200 | [diff] [blame] | 21 | implementation group: 'com.android.tools.smali', name: 'smali', version: smaliVersion |
Morten Krogh-Jespersen | 5a37de8 | 2023-03-02 01:42:28 +0100 | [diff] [blame] | 22 | implementation group: 'org.ow2.asm', name: 'asm', version: asmVersion |
| 23 | implementation group: 'org.ow2.asm', name: 'asm-commons', version: asmVersion |
| 24 | implementation group: 'org.ow2.asm', name: 'asm-tree', version: asmVersion |
| 25 | implementation group: 'org.ow2.asm', name: 'asm-analysis', version: asmVersion |
| 26 | implementation group: 'org.ow2.asm', name: 'asm-util', version: asmVersion |
Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 27 | } |
Ian Zerny | 5fffb0a | 2019-02-11 13:54:22 +0100 | [diff] [blame] | 28 | |
| 29 | sourceCompatibility = JavaVersion.VERSION_1_8 |
| 30 | targetCompatibility = JavaVersion.VERSION_1_8 |