Skip to content

Commit 9681eb3

Browse files
committed
Adapt Build.scala
1 parent 1503c10 commit 9681eb3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

project/Build.scala

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ object Build {
140140
val stdlibBootstrappedVersion = "2.13.12"
141141

142142
val dottyOrganization = "org.scala-lang"
143-
val dottyGithubUrl = "https://github.com/lampepfl/dotty"
144-
val dottyGithubRawUserContentUrl = "https://raw.githubusercontent.com/lampepfl/dotty"
143+
val dottyGithubUrl = "https://github.com/scala/scala3"
144+
val dottyGithubRawUserContentUrl = "https://raw.githubusercontent.com/scala/scala3"
145145

146146

147147
val isRelease = sys.env.get("RELEASEBUILD") == Some("yes")
@@ -379,7 +379,7 @@ object Build {
379379
"-skip-by-regex:.+\\.impl($|\\..+)",
380380
"-project-logo", "docs/_assets/images/logo.svg",
381381
"-social-links:" +
382-
"github::https://github.com/lampepfl/dotty," +
382+
"github::https://github.com/scala/scala3," +
383383
"discord::https://discord.com/invite/scala," +
384384
"twitter::https://twitter.com/scala_lang",
385385
// contains special definitions which are "transplanted" elsewhere
@@ -1859,7 +1859,7 @@ object Build {
18591859
.add(ProjectVersion(baseVersion))
18601860
.remove[VersionsDictionaryUrl]
18611861
.add(SourceLinks(List(
1862-
s"${temp.getAbsolutePath}=github://lampepfl/dotty/language-reference-stable"
1862+
s"${temp.getAbsolutePath}=github://scala/scala3/language-reference-stable"
18631863
)))
18641864
.withTargets(List("___fake___.scala"))
18651865
}
@@ -2027,7 +2027,7 @@ object Build {
20272027
scmInfo := Some(
20282028
ScmInfo(
20292029
url(dottyGithubUrl),
2030-
"scm:git:git@github.com:lampepfl/dotty.git"
2030+
"scm:git:git@github.com:scala/scala3.git"
20312031
)
20322032
),
20332033
developers := List(
@@ -2262,7 +2262,7 @@ object ScaladocConfigs {
22622262
sys.env.get("GITHUB_SHA") match {
22632263
case Some(sha) =>
22642264
s"${sourcesPrefix}github://${sys.env("GITHUB_REPOSITORY")}/$sha$outputPrefix"
2265-
case None => s"${sourcesPrefix}github://lampepfl/dotty/$v$outputPrefix"
2265+
case None => s"${sourcesPrefix}github://scala/scala3/$v$outputPrefix"
22662266
}
22672267

22682268
def defaultSourceLinks(version: String = dottyNonBootstrappedVersion, refVersion: String = dottyVersion) = Def.task {
@@ -2273,15 +2273,15 @@ object ScaladocConfigs {
22732273
scalaSrcLink(stdLibVersion, srcManaged(version, "scala") + "="),
22742274
dottySrcLink(refVersion, "library/src=", "#library/src"),
22752275
dottySrcLink(refVersion),
2276-
"docs=github://lampepfl/dotty/main#docs"
2276+
"docs=github://scala/scala3/main#docs"
22772277
)
22782278
)
22792279
}
22802280

22812281
lazy val DefaultGenerationSettings = Def.task {
22822282
def projectVersion = version.value
22832283
def socialLinks = SocialLinks(List(
2284-
"github::https://github.com/lampepfl/dotty",
2284+
"github::https://github.com/scala/scala3",
22852285
"discord::https://discord.com/invite/scala",
22862286
"twitter::https://twitter.com/scala_lang",
22872287
))

0 commit comments

Comments
 (0)