sbt-versions alternatives and similar packages
Based on the "Sbt plugins" category.
Alternatively, view sbt-versions alternatives based on common mentions on social networks and blogs.
-
sbt-assembly
Deploy über-JARs. Restart processes. (port of codahale/assembly-sbt) -
sbt-dependency-graph
sbt plugin to create a dependency graph for your project -
sbt-jmh
"Trust no one, bench everything." - sbt plugin for JMH (Java Microbenchmark Harness) -
sbt-revolver
An SBT plugin for dangerously fast development turnaround in Scala -
sbt-updates
sbt plugin that can check Maven and Ivy repositories for dependency updates -
better-monadic-for
Desugaring scala `for` without implicit `withFilter`s -
sbt-mima-plugin
A tool for catching binary incompatibility in Scala -
sbt-microsites
An sbt plugin to create awesome microsites for your project -
sbt-ensime
Generates .ensime config files for SBT projects http://ensime.org/build_tools/sbt -
sbt-sonatype
A sbt plugin for publishing Scala/Java projects to the Maven central. -
sbt-ci-release
sbt plugin to automate Sonatype releases from GitHub Actions -
sbt-dependency-check
SBT Plugin for OWASP DependencyCheck. Monitor your dependencies and report if there are any publicly known vulnerabilities (e.g. CVEs). :rainbow: -
sbt-header
sbt-header is an sbt plugin for creating file headers, e.g. copyright headers -
sbt-play-scalajs
SBT plugin to use Scala.js along with any sbt-web server. -
sbt-api-mappings
An Sbt plugin that fills apiMappings for common Scala libraries. -
sbt-sublime
An sbt plugin for generating Sublime Text projects with library dependencies sources -
sbt-unidoc
sbt plugin to create a unified Scaladoc or Javadoc API document across multiple subprojects. -
sbt pom reader plugin
Translates xml -> awesome. Maven-ish support for sbt. -
sbt-ide-settings
SBT plugin for tweaking various IDE settings -
sbt-scala-js-map
A Sbt plugin that configures source mapping for Scala.js projects hosted on Github -
sbt-hepek
Sbt plugin for rendering Scala objects to files. And more! -
sbt-pantarhei
sbt plugin building and publishing release notes from github pull requests -
sbt-classfinder
SBT plugin for retrieving runtime information about the classes and traits in a project
Learn any GitHub repo in 59 seconds
Do you think we are missing an alternative of sbt-versions or a related project?
README
sbt-versions
SBT plugin for checking for the availability of updated versions of your project's dependencies.
This plugin is not maintained anymore, there is a better version here: https://github.com/rtimush/sbt-updates
How to use
Add the plugin to your SBT by adding this to project/plugins.sbt
addSbtPlugin("com.sksamuel.sbt-versions" % "sbt-versions" % "0.2.0")
Note that this is an auto plugin so only works with SBT 0.13.5 or higher.
Then simply running sbt checkVersions
will cause SBT to check all your declared dependencies against maven central. Any deps that have updated versions available will be highlighted in the console.
Example
Running this plugin on a project of mine gives:
[info] [sbt-versions] 35 dependencies to check for [myproject]
[info] --------------------------------------------------------------
[info] [sbt-versions] Update available org.scala-lang:scala-library:2.11.1 [latest: 2.11.2]
[info] [sbt-versions] Update available org.scala-lang:scala-reflect:2.11.1 [latest: 2.11.2]
[info] [sbt-versions] Update available org.scala-lang:scala-compiler:2.11.1 [latest: 2.11.2]
[info] [sbt-versions] Update available net.sf.uadetector:uadetector-resources:2014.04 [latest: 2014.06]
[info] [sbt-versions] Update available com.fasterxml.jackson.core:jackson-core:2.4.1 [latest: 2.4.1.1]
[info] [sbt-versions] Update available com.fasterxml.jackson.core:jackson-databind:2.4.1 [latest: 2.4.1.3]
[info] [sbt-versions] Update available org.codehaus.woodstox:woodstox-core-asl:4.3.0 [latest: 4.4.0]
[info] [sbt-versions] Update available com.amazonaws:aws-java-sdk:1.7.10 [latest: 1.8.6]
[info] [sbt-versions] Update available joda-time:joda-time:2.3 [latest: 2.4]
[info] [sbt-versions] Update available com.sendgrid:sendgrid-java:1.0.0 [latest: 1.1.0]
[info] [sbt-versions] Update available com.sendgrid:smtpapi-java:0.0.2 [latest: 0.1.1]
[info] [sbt-versions] Update available com.stripe:stripe-java:1.14.0 [latest: 1.15.1]
[info] [sbt-versions] Update available org.apache.commons:commons-email:1.3.2 [latest: 1.3.3]