Skip to content

Commit b58f11d

Browse files
FAB-16680 Fix cloudflare error on jitpack.io
Fixing error on fabric-chaincode-java builds to get dependencies from jitpack.io in 1.4 branch Signed-off-by: vijaypunugubati <[email protected]> Change-Id: Iaccb2b7db4852d58719aeb481d61192f1fd5f74b
1 parent 1db31c9 commit b58f11d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ allprojects {
1414
mavenLocal()
1515
jcenter()
1616
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
17-
maven { url 'https://jitpack.io' }
17+
maven { url "https://www.jitpack.io" }
1818
mavenCentral()
1919
}
2020
}

fabric-chaincode-docker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
mavenLocal()
1010
jcenter()
1111
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
12-
maven { url 'https://jitpack.io' }
12+
maven { url "https://www.jitpack.io" }
1313
mavenCentral()
1414
}
1515
dependencies {

fabric-chaincode-example-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sourceCompatibility = 1.8
1111
repositories {
1212
mavenLocal()
1313
mavenCentral()
14-
maven { url 'https://jitpack.io' }
14+
maven { url "https://www.jitpack.io" }
1515
}
1616

1717
dependencies {

fabric-contract-example/gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
mavenLocal()
1212
mavenCentral()
1313
maven {
14-
url 'https://jitpack.io'
14+
url "https://www.jitpack.io"
1515
}
1616
maven {
1717
url "https://nexus.hyperledger.org/content/repositories/snapshots/"

0 commit comments

Comments
 (0)