-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathbuild.gradle
More file actions
75 lines (63 loc) · 1.88 KB
/
Copy pathbuild.gradle
File metadata and controls
75 lines (63 loc) · 1.88 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
plugins {
id 'java-library'
id 'maven-publish'
}
group = 'com.github.paipaipaipai'
version = '1.3.0'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
allprojects {
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
java {
withSourcesJar()
withJavadocJar()
}
javadoc {
options.encoding = 'UTF-8'
options.addStringOption('Xdoclint:none', '-quiet')
failOnError = false
}
dependencies {
implementation 'io.github.qyvlik:io.eblock.eos-eos4j:1.0.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
implementation 'org.bitcoinj:bitcoinj-core:0.14.7'
implementation 'org.json:json:20230618'
implementation 'com.github.paipaipaipai:FilecoinJ:0.1.1'
implementation 'com.google.protobuf:protobuf-java:3.24.3'
implementation 'com.github.lailaibtc:trident:0.0.3'
implementation 'com.google.guava:guava:32.1.2-jre'
implementation 'io.grpc:grpc-stub:1.58.0'
implementation 'cn.hutool:hutool-core:5.8.22'
implementation 'com.alibaba:fastjson:1.2.83'
implementation 'org.apache.commons:commons-lang3:3.13.0'
testImplementation platform('org.junit:junit-bom:5.10.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
testLogging {
events 'passed', 'skipped', 'failed'
showExceptions true
showCauses true
showStackTraces true
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
groupId = project.group
artifactId = rootProject.name
version = project.version
}
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}