Skip to content

Commit 1f15c00

Browse files
committed
update test run-dev
1 parent a18ac94 commit 1f15c00

File tree

3 files changed

+65
-3
lines changed

3 files changed

+65
-3
lines changed

fablo-config.json

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.2.0/schema.json",
3+
"global": {
4+
"fabricVersion": "2.3.0",
5+
"tls": false,
6+
"engine": "docker",
7+
"peerDevMode": true
8+
},
9+
"orgs": [
10+
{
11+
"organization": {
12+
"name": "Orderer",
13+
"domain": "orderer.example.com"
14+
},
15+
"orderers": [
16+
{
17+
"groupName": "group1",
18+
"type": "solo",
19+
"instances": 1
20+
}
21+
],
22+
"tools": {}
23+
},
24+
{
25+
"organization": {
26+
"name": "Org1",
27+
"domain": "org1.example.com"
28+
},
29+
"peer": {
30+
"instances": 1,
31+
"db": "LevelDb"
32+
},
33+
"tools": {}
34+
}
35+
],
36+
"channels": [
37+
{
38+
"name": "my-channel1",
39+
"orgs": [
40+
{
41+
"name": "Org1",
42+
"peers": [
43+
"peer0",
44+
"peer1"
45+
]
46+
}
47+
]
48+
}
49+
],
50+
"chaincodes": [
51+
{
52+
"name": "chaincode1",
53+
"version": "0.0.1",
54+
"lang": "java",
55+
"channel": "my-channel1",
56+
"directory": "./samples/chaincodes/java-chaincode"
57+
}
58+
]
59+
}

samples/chaincodes/chaincode-java-simple/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222
}
2323

2424
dependencies {
25-
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '2.3.0'
25+
implementation 'org.hyperledger.fabric-chaincode-java:fabric-chaincode-shim:2.3.0'
2626
implementation group: 'org.json', name: 'json', version: '20180813'
2727
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
2828
testImplementation 'org.assertj:assertj-core:3.11.1'

samples/gateway/node/package-lock.json

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)