mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
* Java erc20 chaincode implementation Signed-off-by: renjithpta <renjithkn@gmail.com> Signed-off-by: renjithpta <renjithkn@gmail.com> * Java erc20 chaincode implementation Signed-off-by: renjithpta <renjithkn@gmail.com> Signed-off-by: renjithpta <renjithkn@gmail.com> * Java erc20 chaincode implementation Signed-off-by: renjithpta <renjithkn@gmail.com> Signed-off-by: renjithpta <renjithkn@gmail.com> * Java erc20 token standard chaincode implementation Signed-off-by: renjithpta <renjithkn@gmail.com> Signed-off-by: renjithpta <renjithkn@gmail.com>
88 lines
1.7 KiB
Groovy
Executable file
88 lines
1.7 KiB
Groovy
Executable file
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
plugins {
|
|
id 'com.github.johnrengelman.shadow' version '5.1.0'
|
|
id 'application'
|
|
id 'checkstyle'
|
|
id 'jacoco'
|
|
}
|
|
|
|
group 'org.hyperledger.fabric.samples'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.hyperledger.fabric-chaincode-java:fabric-chaincode-shim:2.4.1'
|
|
implementation 'org.json:json:+'
|
|
implementation 'com.owlike:genson:1.5'
|
|
testImplementation 'org.hyperledger.fabric-chaincode-java:fabric-chaincode-shim:2.4.1'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
|
|
testImplementation 'org.assertj:assertj-core:3.11.1'
|
|
testImplementation 'org.mockito:mockito-core:2.+'
|
|
testRuntimeOnly("net.bytebuddy:byte-buddy:1.10.6")
|
|
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://jitpack.io'
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = 'org.hyperledger.fabric.contract.ContractRouter'
|
|
}
|
|
|
|
checkstyle {
|
|
toolVersion '8.21'
|
|
configFile file("config/checkstyle/checkstyle.xml")
|
|
}
|
|
|
|
checkstyleMain {
|
|
source ='src/main/java'
|
|
}
|
|
|
|
checkstyleTest {
|
|
source ='src/test/java'
|
|
}
|
|
|
|
jacocoTestReport {
|
|
dependsOn test
|
|
}
|
|
|
|
jacocoTestCoverageVerification {
|
|
violationRules {
|
|
rule {
|
|
limit {
|
|
minimum = 0.8
|
|
}
|
|
}
|
|
}
|
|
|
|
finalizedBy jacocoTestReport
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|
|
|
|
mainClassName = 'org.hyperledger.fabric.contract.ContractRouter'
|
|
|
|
shadowJar {
|
|
baseName = 'chaincode'
|
|
version = null
|
|
classifier = null
|
|
|
|
manifest {
|
|
attributes 'Main-Class': 'org.hyperledger.fabric.contract.ContractRouter'
|
|
}
|
|
}
|
|
|
|
check.dependsOn jacocoTestCoverageVerification
|
|
installDist.dependsOn check
|