-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
40 lines (33 loc) · 1001 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
40
plugins {
id 'java'
id 'checkstyle'
id 'application'
}
group 'uk.ac.ic.doc.blocc'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
application {
mainClass = 'uk.ac.ic.doc.blocc.BloccPiDemoApp'
}
dependencies {
implementation 'org.hyperledger.fabric:fabric-gateway:1.2.2'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.mockito:mockito-core:5.+'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
compileOnly 'io.grpc:grpc-api:1.54.1'
runtimeOnly 'io.grpc:grpc-netty-shaded:1.54.1'
}
checkstyle {
toolVersion '10.11.0'
configFile rootProject.file("config/checkstyle/google_checks.xml")
}
test {
useJUnitPlatform()
}
installDist.dependsOn check