-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
39 lines (32 loc) · 874 Bytes
/
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
plugins {
id 'java'
id 'java-library'
id 'application'
id 'maven-publish'
id "com.github.johnrengelman.shadow" version "7.1.0"
}
group 'io.github.jroy'
mainClassName = 'io.github.jroy.apkpatcher.ApkPatcherCli'
publishing {
publications {
maven(MavenPublication) {
groupId = 'io.github.jroy'
artifactId = 'apkpatcher'
version = '0.1'
from components.java
}
}
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
api 'org.apktool:apktool-lib:2.6.1'
api 'org.apktool:brut.j.common:2.6.1'
api 'org.apktool:brut.j.dir:2.6.1'
api 'org.apktool:brut.j.util:2.6.1'
api 'com.github.patrickfav:uber-apk-signer:fc91ac2ce4'
api 'commons-io:commons-io:2.11.0'
implementation 'net.sourceforge.argparse4j:argparse4j:0.9.0'
}