in project/PekkoDependency.scala [34:45]
def pekkoDependency(defaultVersion: String): Pekko = {
Option(System.getProperty("pekko.sources")) match {
case Some(pekkoSources) =>
Sources(pekkoSources)
case None =>
Option(System.getProperty("pekko.build.pekko.version")) match {
case Some("main") => mainSnapshot
case Some("default") | None => Artifact(defaultVersion)
case Some(other) => Artifact(other, true)
}
}
}