We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3110b4b commit e64a49dCopy full SHA for e64a49d
clients/datasource/maven_registry.go
@@ -36,6 +36,10 @@ import (
36
// MavenCentral holds the URL of Maven Central Repository.
37
const MavenCentral = "https://repo.maven.apache.org/maven2"
38
39
+// MavenCentralMirror holds the URL of Maven Central mirror hosted on Google Cloud Storage.
40
+// https://storage-download.googleapis.com/maven-central/index.html
41
+const MavenCentralMirror = "https://maven-central.storage-download.googleapis.com/maven2/"
42
+
43
var errAPIFailed = errors.New("API query failed")
44
45
// MavenRegistryAPIClient defines a client to fetch metadata from a Maven registry.
0 commit comments