1
- apply plugin : ' java'
1
+ apply plugin : ' java-library '
2
2
3
3
version rootProject. ext. VERSION_NAME
4
4
group rootProject. ext. GROUP
@@ -7,14 +7,13 @@ group rootProject.ext.GROUP
7
7
8
8
9
9
dependencies {
10
- compile fileTree(dir : ' libs' , include : [' *.jar' ])
11
- compile project(' :tinker-commons' )
12
- compile group : ' com.tencent.mm' , name : ' apk-parser-lib' , version : ' 1.2.3'
13
- compile group : ' com.google.guava' , name : ' guava' , version : ' 11.0.2'
14
- compile group : ' org.ow2.asm' , name : ' asm' , version : ' 5.0.3'
15
- compile group : ' org.smali' , name : ' dexlib2' , version : ' 2.1.3'
16
-
17
- compile (group : ' dom4j' , name : ' dom4j' , version : ' 1.6.1' )
10
+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
11
+ api project(' :tinker-commons' )
12
+ api group : ' com.tencent.mm' , name : ' apk-parser-lib' , version : ' 1.2.3'
13
+ implementation group : ' com.google.guava' , name : ' guava' , version : ' 11.0.2'
14
+ implementation group : ' org.ow2.asm' , name : ' asm' , version : ' 5.0.3'
15
+ implementation group : ' org.smali' , name : ' dexlib2' , version : ' 2.1.3'
16
+ implementation group : ' dom4j' , name : ' dom4j' , version : ' 1.6.1'
18
17
}
19
18
20
19
sourceSets {
0 commit comments