Skip to content

Commit

Permalink
Add smithy4s-protocol to classpath deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz committed Jan 4, 2024
1 parent c8a8ef7 commit b9bb6e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Deployed on a very small 2vcpu and 512mb vm.

The backend can be configured.

1. `SMITHY_CLASSPATH_CONFIG`: location of a json file used to load dependencies to include during code gen. The file looks content looks like this:
1. `SMITHY_CLASSPATH_CONFIG`: location of a json file used to load dependencies to include during code gen. The file content looks like this:

```json
{
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ lazy val backendDependencies = project
.settings(smithyClasspathSettings)
.settings(
smithyClasspath := Seq(
"com.disneystreaming.alloy" % "alloy-core" % "0.2.8"
"com.disneystreaming.alloy" % "alloy-core" % "0.2.8",
"com.disneystreaming.smithy4s" % "smithy4s-protocol" % smithy4sVersion.value
),
smithyClasspathDir := "smithy-classpath",
Docker / packageName := "smithy4s-code-generation",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class CodeEditor(dependencies: EventStream[Either[Throwable, Dependencies]]) {
updatePermalinkDeps(dep),
updateCheckFromPermalinkDeps(dep)
),
label(forId := dep.value, dep.value)
label(forId := dep.value, dep.value, cls := "font-mono")
)
}
)
Expand Down

0 comments on commit b9bb6e5

Please sign in to comment.