We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be6163f commit 1283c20Copy full SHA for 1283c20
project/scripts/bisect.scala
@@ -179,7 +179,7 @@ object Releases:
179
lazy val allReleases: Vector[Release] =
180
val re = raw"<version>(.+-bin-\d{8}-\w{7}-NIGHTLY)</version>".r
181
val xml = io.Source.fromURL(
182
- "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/maven-metadata.xml"
+ "https://repo.scala-lang.org/artifactory/maven-nightlies/org/scala-lang/scala3-compiler_3/maven-metadata.xml"
183
)
184
re.findAllMatchIn(xml.mkString)
185
.flatMap{ m => Option(m.group(1)).map(Release.apply) }
0 commit comments