From 4afe0db7f480a046870a4c938f74fb494601f33a Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 30 Jan 2019 22:18:08 -0800 Subject: [PATCH] include correct license info in POM --- build.sbt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sbt b/build.sbt index c6d583fe3..5e5224098 100644 --- a/build.sbt +++ b/build.sbt @@ -13,6 +13,9 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform) name := "scala-xml", version := "1.2.0-SNAPSHOT", + // this line could be removed after https://github.com/scala/sbt-scala-module/issues/48 is fixed + licenses := Seq(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0"))), + // Compiler team advised avoiding the -Xfuture option for releases. // The output with -Xfuture should be periodically checked, though. scalacOptions ++= "-deprecation:false -feature -Xlint:-stars-align,-nullary-unit,_".split("\\s+").to[Seq],