-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (36 loc) · 1 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.9.0'
id 'application'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'https://maven.scijava.org/content/repositories/public/'
}
}
dependencies {
implementation 'com.github.ThexXTURBOXx.dex2jar:dex-tools:v59'
implementation('org.soot-oss:sootup.core:1.1.2'){
exclude group: 'com.github.ThexXTURBOXx.dex2jar', module: 'dex-tools'
}
implementation('org.soot-oss:sootup.java.core:1.1.2'){
exclude group: 'com.github.ThexXTURBOXx.dex2jar', module: 'dex-tools'
}
implementation('org.soot-oss:sootup.java.sourcecode:1.1.2'){
exclude group: 'com.github.ThexXTURBOXx.dex2jar', module: 'dex-tools'
}
implementation('org.soot-oss:sootup.java.bytecode:1.1.2'){
exclude group: 'com.github.ThexXTURBOXx.dex2jar', module: 'dex-tools'
}
}
test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}
application {
mainClassName = 'MainKt'
}