mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
[FAB-12119] Fix groupId in java chaincodes
According to sonatype.org naming requirements, java shim jars groupId should be org.hyperledger.fabric-chaincode-java Change-Id: Ia30cb77b1081b3fb4f7573568f2e2abfe89315d4 Signed-off-by: gennady <gennady@il.ibm.com>
This commit is contained in:
parent
3237229184
commit
9f80e47d2d
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ plugins {
|
|||
id 'java'
|
||||
}
|
||||
|
||||
group 'org.hyperledger.fabric'
|
||||
group 'org.hyperledger.fabric-chaincode-java'
|
||||
version '1.0-SNAPSHOT'
|
||||
|
||||
sourceCompatibility = 1.8
|
||||
|
|
@ -19,7 +19,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile group: 'org.hyperledger.fabric', name: 'fabric-chaincode-shim', version: '1.3.0-SNAPSHOT'
|
||||
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '1.3.0-SNAPSHOT'
|
||||
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue