Skip to content

Commit 01b1572

Browse files
committed
Adding sbt-updates plugin.
1 parent 3078894 commit 01b1572

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

TUTORIAL.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,12 @@ The code implementing our microservice's logic is described in the "microservice
139139

140140
### plugins.sbt
141141

142-
There are three plugins used in our project. These are:
142+
There are four plugins used in our project. These are:
143143

144144
* `sbt-revolver` which is helpful for development. It recompiles and runs our microservice every time the code in files changes (`~reStart` sbt command). Notice that it is initialized inside `build.sbt`.
145145
* `sbt-assembly` is a great library that lets us deploy our microservice as a single .jar file.
146146
* `sbt-native-packager` is needed by Heroku to stage the app.
147+
* `sbt-updates` provides a handy sbt command `dependencyUpdates` that list dependencies that could be updated.
147148

148149
Next: As we know what are the dependencies of our project, let's see what is the minimal configuration needed for the project.
149150

project/plugins.sbt

+2
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
22

33
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.0")
44

5+
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
6+
57
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.11")

0 commit comments

Comments
 (0)