Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 8253f61

Browse files
authored
Merge pull request #156 from bootstraponline/gradle
Resolve deps via maven
2 parents 3f56824 + 2445ee9 commit 8253f61

File tree

13 files changed

+16
-242
lines changed

13 files changed

+16
-242
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.gradle/
2+
13
ClassySharkWS/.gradle/
24

35
ClassySharkWS/build/

ClassySharkWS/build.gradle

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ repositories {
1010
flatDir {
1111
dirs '../third_party'
1212
}
13+
mavenCentral()
1314
}
1415

1516
// ClassyShark doesn't follow the standard src/main/java convention
@@ -26,19 +27,21 @@ sourceSets {
2627
}
2728

2829
dependencies {
29-
compile name: 'asm-all-5.0.4', ext: 'jar'
30+
// local jars
3031
compile name: 'asmdex-1.0', ext: 'jar'
31-
compile name: 'bcel-5.2', ext: 'jar'
32-
compile name: 'converter-gson-2.0.2', ext: 'jar'
33-
compile name: 'dexlib2-2.1.0', ext: 'jar'
34-
compile name: 'gson-2.6.2', ext: 'jar'
35-
compile name: 'guava-18.0', ext: 'jar'
36-
compile name: 'jack-1.3-b2', ext: 'jar'
37-
compile name: 'java-binutils', ext: 'jar'
38-
compile name: 'okhttp-3.2.0', ext: 'jar'
39-
compile name: 'okio-1.7.0', ext: 'jar'
40-
compile name: 'retrofit-2.0.2', ext: 'jar'
32+
compile name: 'dexlib2', ext: 'jar'
4133
compile name: 'util-2.0.6', ext: 'jar'
34+
compile name: 'java-binutils', ext: 'jar'
35+
36+
// maven
37+
compile 'org.ow2.asm:asm-all:5.0.4'
38+
compile 'org.apache.bcel:bcel:6.0'
39+
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
40+
compile 'com.google.code.gson:gson-parent:2.8.1'
41+
compile 'com.google.guava:guava:22.0'
42+
compile 'com.squareup.okhttp3:okhttp:3.8.1'
43+
compile 'com.squareup.okio:okio:1.13.0'
44+
compile 'com.squareup.retrofit2:retrofit:2.3.0'
4245
}
4346

4447
jar {

third_party/ASM.LICENSE

Lines changed: 0 additions & 29 deletions
This file was deleted.

third_party/asm-all-5.0.4.jar

-236 KB
Binary file not shown.

third_party/bcel-5.2.jar

-521 KB
Binary file not shown.

third_party/bcel.LICENSE

Lines changed: 0 additions & 202 deletions
This file was deleted.
-5.36 KB
Binary file not shown.

third_party/gson-2.6.2.jar

-224 KB
Binary file not shown.

third_party/guava-18.0.jar

-2.15 MB
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)