Skip to content

Commit

Permalink
[FAB-12170] Fix dependency check in java chaincode
Browse files Browse the repository at this point in the history
Currently sample java chaincode can only work with version
1.3.0-SNAPSHOT of the shim.

Allow sample java chaincode to work with any v1.x java shim.

Change-Id: Iee69289392b4fa5fdb5cb14c41672f96120f711f
Signed-off-by: David Enyeart <enyeart@us.ibm.com>
  • Loading branch information
denyeart committed Sep 26, 2018
1 parent 6935679 commit 514d456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chaincode/chaincode_example02/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {
}

dependencies {
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '1.3.0-SNAPSHOT'
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '1.+'
testCompile group: 'junit', name: 'junit', version: '4.12'
}

Expand Down

0 comments on commit 514d456

Please sign in to comment.