-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #458 from gemini-hlsw/topic/sbt-typelevel-updates
Changes for latest sbt-typelevel
- Loading branch information
Showing
5 changed files
with
31 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,12 +34,13 @@ ThisBuild / tlBaseVersion := "0.14" | |
ThisBuild / organization := "edu.gemini" | ||
ThisBuild / organizationName := "Association of Universities for Research in Astronomy, Inc. (AURA)" | ||
ThisBuild / startYear := Some(2019) | ||
ThisBuild / licenses += (("BSD-3-Clause", new URL("https://opensource.org/licenses/BSD-3-Clause"))) | ||
ThisBuild / licenses := Seq(("BSD-3-Clause", new URL("https://opensource.org/licenses/BSD-3-Clause"))) | ||
ThisBuild / developers := List( | ||
Developer("milessabin", "Miles Sabin", "[email protected]", url("http://milessabin.com/blog")), | ||
Developer("tpolecat", "Rob Norris", "[email protected]", url("http://www.tpolecat.org")), | ||
) | ||
|
||
ThisBuild / tlCiScalafmtCheck := false | ||
ThisBuild / tlCiReleaseBranches := Seq("main") | ||
ThisBuild / tlSonatypeUseLegacyHost := false | ||
ThisBuild / githubWorkflowBuild ~= { steps => | ||
|
@@ -49,6 +50,7 @@ ThisBuild / githubWorkflowBuild ~= { steps => | |
) +: steps | ||
} | ||
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11")) | ||
ThisBuild / tlBspCrossProjectPlatforms := Set(JVMPlatform) | ||
|
||
lazy val commonSettings = Seq( | ||
//scalacOptions --= Seq("-Wunused:params", "-Wunused:imports", "-Wunused:patvars", "-Wdead-code", "-Wunused:locals", "-Wunused:privates", "-Wunused:implicits"), | ||
|
@@ -91,7 +93,7 @@ lazy val modules: List[CompositeProject] = List( | |
profile | ||
) | ||
|
||
lazy val `gsp-graphql` = tlCrossRootProject | ||
lazy val root = tlCrossRootProject | ||
.aggregate(modules:_*) | ||
.disablePlugins(RevolverPlugin) | ||
.settings( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,8 @@ | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.5.0") | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.5.0") | ||
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0") | ||
addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.5.0") | ||
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4") | ||
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") | ||
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0") | ||
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.5") | ||
addSbtPlugin("nl.zolotko.sbt" % "sbt-jfr" % "0.0.1") | ||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") | ||
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") | ||
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.14") | ||
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") | ||
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") |