Skip to content

Commit

Permalink
Remove scala 2.12 cross-build and update sbt and plugin versions. (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
tfenne authored Mar 1, 2022
1 parent f061593 commit b9c2453
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,12 @@ lazy val commonSettings = Seq(
organizationHomepage := Some(url("http://www.fulcrumgenomics.com")),
homepage := Some(url("http://github.com/fulcrumgenomics/sopt")),
startYear := Some(2015),
scalaVersion := "2.13.0",
crossScalaVersions := Seq("2.12.8", "2.13.0"),
scalaVersion := "2.13.8",
crossScalaVersions := Seq("2.13.8"),
scalacOptions ++= Seq("-target:jvm-1.8", "-deprecation", "-unchecked"),
scalacOptions in (Compile, doc) ++= docScalacOptions,
scalacOptions in (Test, doc) ++= docScalacOptions,
useCoursier := false,
autoAPIMappings := true,
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-h", Option(System.getenv("TEST_HTML_REPORTS")).getOrElse(htmlReportsDirectory)),
testOptions in Test += Tests.Argument("-l", "LongRunningTest"), // ignores long running tests
Expand All @@ -116,7 +117,7 @@ lazy val root = Project(id="sopt", base=file("."))
.settings(
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"com.fulcrumgenomics" %% "commons" % "1.1.0",
"com.fulcrumgenomics" %% "commons" % "1.3.0",
"com.vladsch.flexmark" % "flexmark" % "0.18.5",

//---------- Test libraries -------------------//
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.2.8
sbt.version=1.6.2
16 changes: 8 additions & 8 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
resolvers += Resolver.url("fix-sbt-plugin-releases", url("http://dl.bintray.com/sbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)
resolvers += Resolver.url("fix-sbt-plugin-releases", url("https://dl.bintray.com/sbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)

addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.9.3")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.6")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.6")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.2")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.0")
addDependencyTreePlugin
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.10")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.2.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.4")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")

0 comments on commit b9c2453

Please sign in to comment.