-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
58 lines (48 loc) · 1.26 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
javafx {
version = "14"
modules = [ 'javafx.controls' , 'javafx.fxml' ]
}
apply plugin:'application'
mainClassName = "Main"
group 'apkcloner'
version '0.8'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1"
compile fileTree(dir: 'libs', include: ['*.jar'])
compile group: 'com.android.tools.build', name: 'apksig', version: '2.3.0'
compile 'org.yaml:snakeyaml:1.18:android'
compile 'org.smali:baksmali:2.2.6'
compile 'org.apache.commons:commons-lang3:3.1'
compile 'org.smali:smali:2.2.6'
compile 'xpp3:xpp3:1.1.4c'
compile 'xmlunit:xmlunit:1.6'
compile 'commons-io:commons-io:2.4'
compile 'commons-cli:commons-cli:1.4'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
jar {
manifest {
attributes 'Main-Class': 'Main'
}
from {
configurations.compile.collect {
it.isDirectory() ? it : zipTree(it)
}
}
}