From 5fcb100d6ffdf57ec1ed4efa536ae6885b485388 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Sun, 18 Aug 2019 23:20:43 -0400 Subject: [PATCH] publish for 2.13 Fixes #201 https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.13/ --- build.sbt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 08d4af281..c807ce0fe 100644 --- a/build.sbt +++ b/build.sbt @@ -24,7 +24,7 @@ def commonSettings: Seq[Setting[_]] = Seq( // concurrentRestrictions in Global += Util.testExclusiveRestriction, testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"), javacOptions in compile ++= Seq("-Xlint", "-Xlint:-serial"), - crossScalaVersions := Seq(scala212), + crossScalaVersions := Seq(scala212, scala213), scalacOptions in console in Compile -= "-Ywarn-unused-import", scalacOptions in console in Test -= "-Ywarn-unused-import", publishArtifact in Compile := true, @@ -98,7 +98,6 @@ lazy val utilLogging = (project in internalPath / "util-logging") .dependsOn(utilInterface) .settings( commonSettings, - crossScalaVersions := Seq(scala212), name := "Util Logging", libraryDependencies ++= Seq(jline, log4jApi, log4jCore, disruptor, sjsonnewScalaJson.value, scalaReflect.value),