Skip to content

Commit 88b9397

Browse files
FAB-16680 Fix cloudflare error on jitpack.io
Fixing error on fabric-chaincode-java builds to get dependencies from jitpack.io Signed-off-by: vijaypunugubati <[email protected]> Change-Id: I1b327e45f1ba2d59fb42f0ef0849e33d2bcd67b6
1 parent fc7e408 commit 88b9397

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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 {

0 commit comments

Comments
 (0)