Switch languages in paradox without page refresh (#23544)

This commit is contained in:
Arnout Engelen 2017-10-30 13:45:30 +01:00 committed by GitHub
parent 34891df7e3
commit a2cbff1061
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
216 changed files with 60 additions and 103 deletions

View file

@ -209,10 +209,11 @@ lazy val docs = akkaModule("akka-docs")
"snip.akka.base_dir" -> (baseDirectory in ThisBuild).value.getAbsolutePath,
"fiddle.code.base_dir" -> (sourceDirectory in Test).value.getAbsolutePath
),
paradoxGroups := Map("Languages" -> Seq("Scala", "Java")),
resolvers += Resolver.jcenterRepo
paradoxGroups := Map("Language" -> Seq("Scala", "Java")),
resolvers += Resolver.jcenterRepo,
deployRsyncArtifact := List((paradox in Compile).value -> s"www/docs/akka/${version.value}"),
)
.enablePlugins(AkkaParadoxPlugin, NoPublish, ParadoxBrowse, ScaladocNoVerificationOfDiagrams)
.enablePlugins(AkkaParadoxPlugin, DeployRsync, NoPublish, ParadoxBrowse, ScaladocNoVerificationOfDiagrams)
.disablePlugins(MimaPlugin, WhiteSourcePlugin)
lazy val multiNodeTestkit = akkaModule("akka-multi-node-testkit")