Skip to content

Commit dd459c0

Browse files
[FAB-12116] Fix groupId in test data uses java shim
According to sonatype.org naming requirements, java shim jars groupId should be org.hyperledger.fabric-chaincode-java Change-Id: Ib0166b9bfb592a929c0f4243a1d355bc920ba7a3 Signed-off-by: gennady <gennady@il.ibm.com>
1 parent ce1cad6 commit dd459c0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

core/chaincode/platforms/java/testdata/gradle/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'java'
44
}
55

6-
group 'org.hyperledger.fabric'
6+
group 'org.hyperledger.fabric-chaincode-java'
77
version '1.0-SNAPSHOT'
88

99
sourceCompatibility = 1.8
@@ -14,7 +14,7 @@ repositories {
1414
}
1515

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

integration/chaincode/java/simple/gradle/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id 'java'
1010
}
1111

12-
group 'org.hyperledger.fabric'
12+
group 'org.hyperledger.fabric-chaincode-java'
1313
version '1.0-SNAPSHOT'
1414

1515
sourceCompatibility = 1.8
@@ -20,7 +20,7 @@ repositories {
2020
}
2121

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

integration/chaincode/java/simple_pvtdata/gradle/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id 'java'
1010
}
1111

12-
group 'org.hyperledger.fabric'
12+
group 'org.hyperledger.fabric-chaincode-java'
1313
version '1.0-SNAPSHOT'
1414

1515
sourceCompatibility = 1.8
@@ -20,7 +20,7 @@ repositories {
2020
}
2121

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

0 commit comments

Comments
 (0)