Skip to content

Commit

Permalink
[FAB-12119] Fix groupId in java chaincodes
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
gennadylaventman committed Sep 24, 2018
1 parent 3237229 commit 9f80e47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chaincode/chaincode_example02/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
id 'java'
}

group 'org.hyperledger.fabric'
group 'org.hyperledger.fabric-chaincode-java'
version '1.0-SNAPSHOT'

sourceCompatibility = 1.8
Expand All @@ -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'
}

Expand Down

0 comments on commit 9f80e47

Please sign in to comment.