-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Avoiding automatic dependency on akka http server makes it easier for dependant projects to use Scala 3 and netty instead. - adjust tests to use mockito instead of specs2 mock wrappers. - drop jdk8 from CI
- Loading branch information
1 parent
b441756
commit 62b6281
Showing
53 changed files
with
1,566 additions
and
1,448 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,12 +1,14 @@ | ||
addSbtPlugin(dependency = "ch.epfl.scala" % "sbt-version-policy" % "2.0.1") | ||
Global / evictionErrorLevel := Level.Info | ||
|
||
addSbtPlugin(dependency = "ch.epfl.scala" % "sbt-version-policy" % "2.1.0") | ||
addSbtPlugin(dependency = "com.github.sbt" % "sbt-release" % "1.1.0") | ||
addSbtPlugin(dependency = "com.github.sbt" % "sbt-unidoc" % "0.5.0") | ||
addSbtPlugin(dependency = "com.jsuereth" % "sbt-pgp" % "2.0.2") | ||
addSbtPlugin(dependency = "com.jsuereth" % "sbt-pgp" % "2.1.1") | ||
addSbtPlugin(dependency = "com.sksamuel.scapegoat" %% "sbt-scapegoat" % "1.1.1") | ||
addSbtPlugin(dependency = "com.timushev.sbt" % "sbt-updates" % "0.6.2") | ||
addSbtPlugin(dependency = "com.typesafe.play" % "sbt-plugin" % "2.8.16") | ||
addSbtPlugin(dependency = "net.vonbuchholtz" % "sbt-dependency-check" % "4.0.0") | ||
addSbtPlugin(dependency = "org.scalariform" % "sbt-scalariform" % "1.8.2") | ||
addSbtPlugin(dependency = "org.scoverage" % "sbt-scoverage" % "1.9.3") | ||
addSbtPlugin(dependency = "org.scoverage" % "sbt-coveralls" % "1.3.2") | ||
addSbtPlugin(dependency = "org.xerial.sbt" % "sbt-sonatype" % "3.9.12") | ||
addSbtPlugin(dependency = "com.timushev.sbt" % "sbt-updates" % "0.6.4") | ||
addSbtPlugin(dependency = "com.typesafe.play" % "sbt-plugin" % "2.8.19") | ||
addSbtPlugin(dependency = "net.vonbuchholtz" % "sbt-dependency-check" % "5.1.0") | ||
addSbtPlugin(dependency = "org.scalariform" % "sbt-scalariform" % "1.8.3") | ||
addSbtPlugin(dependency = "org.scoverage" % "sbt-scoverage" % "2.0.7") | ||
addSbtPlugin(dependency = "org.scoverage" % "sbt-coveralls" % "1.3.7") | ||
addSbtPlugin(dependency = "org.xerial.sbt" % "sbt-sonatype" % "3.9.18") |
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
Oops, something went wrong.