mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-18 16:05:10 +00:00
Co-authored-by: deeptiraom <41100100+deeptiraom@users.noreply.github.com> Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com> Co-authored-by: deeptiraom <41100100+deeptiraom@users.noreply.github.com>
20 lines
483 B
Groovy
20 lines
483 B
Groovy
plugins {
|
|
// Apply the application plugin to add support for building a CLI application.
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// This dependency is used by the application.
|
|
implementation 'org.hyperledger.fabric:fabric-gateway:1.0.0'
|
|
implementation 'io.grpc:grpc-netty-shaded:1.42.0'
|
|
implementation 'com.google.code.gson:gson:2.8.9'
|
|
}
|
|
|
|
application {
|
|
// Define the main class for the application.
|
|
mainClass = 'App'
|
|
}
|