Skip to content

Commit

Permalink
hotfix the excommunicado 3.3.2 in blogpost
Browse files Browse the repository at this point in the history
  • Loading branch information
lbialy committed Mar 1, 2024
1 parent 16ee940 commit da0c4be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/blog/2024-03-01-0.2.x-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ I am, personally, of the opinion that code is worth a million words so the best
Let's start with a small web app. To keep things as simple as possible we'll use [scala-cli](https://scala-cli.virtuslab.org/) which will take care of packaging our application for us. We'll also use [tapir's](https://tapir.softwaremill.com/en/latest/server/jdkhttp.html) JDK HTTP server support and leverage Loom because it's just free performance. Let's create a directory for the whole project somewhere and then put our app in `./app` subdirectory. The `project.scala` file will look like this:

```scala
//> using scala 3.3.2
//> using scala 3.3.3
//> using options -Werror -Wunused:all -Wvalue-discard -Wnonunit-statement

//> using jvm "graalvm-java21:21.0.2"
Expand All @@ -41,7 +41,7 @@ Let's start with a small web app. To keep things as simple as possible we'll use
```

The `scala-cli` directives are pretty self-explanatory:
- we use Scala 3.3.2 LTS
- we use Scala 3.3.3 LTS
- we add some linting options for the compiler
- we select GraalVM CE for JDK 21 as the runtime (because of Loom and because GraalVM is awesome)
- we also pull some dependencies - tapir for http server along with static file serving module and scribe for logging
Expand Down

0 comments on commit da0c4be

Please sign in to comment.