Skip to content

Commit

Permalink
Fix chaincode shim at version 1.4.4 for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcoblenz committed Dec 13, 2019
1 parent 7aaa57b commit 07ade74
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
1 change: 0 additions & 1 deletion .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Obsidian_Runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ targetCompatibility = 1.8
dependencies {
implementation 'org.json:json:20171018'
implementation 'commons-io:commons-io:2.5'
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '[1.4,)'
implementation group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '1.4.4'
}

publishing {
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"

libraryDependencies += "junit" % "junit" % "4.12" % "test"
libraryDependencies += "com.google.protobuf" % "protobuf-java" % "3.10.0"
libraryDependencies += "org.hyperledger.fabric-chaincode-java" % "fabric-chaincode-shim" % "1.4.0"
libraryDependencies += "org.hyperledger.fabric-chaincode-java" % "fabric-chaincode-protos" % "1.4.0"
libraryDependencies += "org.hyperledger.fabric-chaincode-java" % "fabric-chaincode-shim" % "1.4.4"
libraryDependencies += "org.hyperledger.fabric-chaincode-java" % "fabric-chaincode-protos" % "1.4.4"
libraryDependencies += "com.helger" % "jcodemodel" % "3.0.3"
libraryDependencies += "org.apache.commons" % "commons-io" % "1.3.2"

Expand Down
Binary file modified docs/repository/edu/cmu/cs/obsidian/runtime/0.1/runtime-0.1.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f42604513da06ddf7103d3f0638d4e15
403542de69f394ad48c9e8aa4a531a2a
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f94513323cce1ee1408bef14684d71bf4ca83221
5cf6d8bee0a68d4798430e9e9da831537cec27f5
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<dependency>
<groupId>org.hyperledger.fabric-chaincode-java</groupId>
<artifactId>fabric-chaincode-shim</artifactId>
<version>[1.4,)</version>
<version>1.4.4</version>
<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5a85c37275fce73fb824a46cff28e612
2e3850d2bae707b18e79781a2ad5802e
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9ac5155ee0ae95cb1668487b91443db5f0ba0b2e
f766a1b0748d17a77d31f247edd32567c14d95dc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<versions>
<version>0.1</version>
</versions>
<lastUpdated>20190908202305</lastUpdated>
<lastUpdated>20191213161343</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c506aad9226e51c71a1d1efeb050515a
9b8b5b65ff4000c50f700c30d3af06db
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8770006b3ff6e2e4bb9ca83b0e0a04768db3ec2a
7bb689ac2ee34c2171e6d715a9e308357854b204
3 changes: 2 additions & 1 deletion fabric/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@ repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url 'https://jitpack.io' }

mavenCentral()
}

dependencies {
implementation 'edu.cmu.cs.obsidian:runtime:0.1'
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '1.+'
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '1.4.4'
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.10.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
Expand Down

0 comments on commit 07ade74

Please sign in to comment.