Merge pull request #210 from eed3si9n/wip/build

publish for 2.13
This commit is contained in:
eugene yokota 2019-08-19 01:01:59 -04:00 committed by GitHub
commit d4824a53ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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),