Last active
January 14, 2020 09:10
-
-
Save calippo/0e33a37c90c52103fe7d154c7b24660f to your computer and use it in GitHub Desktop.
tapiro build.sbt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lazy val dockerMonitor = project | |
.settings(libraryDependencies ++= dependencies) | |
.settings( | |
tapiro / tapiroRoutesPath := "relative path to the routes", | |
tapiro / tapiroModelsPath := "relative path to the models", | |
tapiro / tapiroOutputPath := "relative path for the generated models", | |
tapiro / tapiroEndpointsPackage := cats.data.NonEmptyList("dockerMonitor", Nil), | |
) | |
.enablePlugins(SbtTapiro) | |
.dependsOn(authContracts) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment