You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: TUTORIAL.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -139,11 +139,12 @@ The code implementing our microservice's logic is described in the "microservice
139
139
140
140
### plugins.sbt
141
141
142
-
There are three plugins used in our project. These are:
142
+
There are four plugins used in our project. These are:
143
143
144
144
*`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`.
145
145
*`sbt-assembly` is a great library that lets us deploy our microservice as a single .jar file.
146
146
*`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.
147
148
148
149
Next: As we know what are the dependencies of our project, let's see what is the minimal configuration needed for the project.
0 commit comments