From 8825d98d4f4973203350a86bf1c7ba8abe5cb9d0 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Thu, 26 Nov 2020 07:51:34 -0800 Subject: [PATCH] let javadoc.io host our Scaladoc as per discussion on #469 --- README.md | 2 +- build.sbt | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 6ee3064b6..bf872194c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The standard Scala XML library. Please file XML issues here, not at https://gith The decoupling of scala-xml from the Scala compiler and standard library is possible because the compiler desugars XML literals in Scala source code into a set of method calls. Alternative implementations of these calls are welcome! (The calls are unfortunately only defined by the [implementation](https://github.com/scala/scala/blob/2.11.x/src/compiler/scala/tools/nsc/ast/parser/SymbolicXMLBuilder.scala).) -API documentation is available [here](https://scala.github.io/scala-xml/api/1.2.0/scala/xml/). +API documentation is available [here](https://javadoc.io/doc/org.scala-lang.modules/scala-xml_2.13/). How to documentation is available in the [wiki](https://github.com/scala/scala-xml/wiki) diff --git a/build.sbt b/build.sbt index 8e393a707..c119ef2e6 100644 --- a/build.sbt +++ b/build.sbt @@ -117,9 +117,6 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform) ) }, - apiURL := Some( - url(s"""https://scala.github.io/scala-xml/api/${"-.*".r.replaceAllIn(version.value, "")}/""") - ), apiMappings ++= scalaInstance.value.libraryJars.filter { file => file.getName.startsWith("scala-library") && file.getName.endsWith(".jar") }.map { libraryJar =>