-
Notifications
You must be signed in to change notification settings - Fork 36
/
build.gradle
56 lines (42 loc) · 1.31 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
apply plugin: 'java'
apply plugin: 'com.github.dcendents.android-maven'
group 'com.github.paipaipaipai'
version '1.2.1'
sourceCompatibility = 1.8
//noinspection GroovyAssignabilityCheck
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
mavenCentral()
}
}
buildscript {
repositories {
jcenter()
}
dependencies {
//添加jitpack依赖
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
dependencies {
compile 'io.github.qyvlik:io.eblock.eos-eos4j:1.0.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
compile 'org.bitcoinj:bitcoinj-core:0.16.2'
// compile group: 'com.google.protobuf', name: 'protobuf-lite', version: '3.0.1'
// compile 'com.google.protobuf:protobuf-java:3.5.1'
compile 'org.json:json:20230618'
compile 'com.github.paipaipaipai:FilecoinJ:0.1.1'
compile 'com.google.protobuf:protobuf-java:3.24.3'
compile 'com.github.lailaibtc:trident:0.0.3'
compile 'com.google.guava:guava:32.1.2-jre'
// compile 'com.madgag.spongycastle:core:1.58.0.0'
compile 'io.grpc:grpc-stub:1.58.0'
}
processResources {
from('src/main/java/resources') {
include '**'
}
}