mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-14 05:30:51 +00:00
15 lines
334 B
Scala
15 lines
334 B
Scala
organization := ""
|
|
version := ""
|
|
name := ""
|
|
scalaVersion := "2.12.6"
|
|
|
|
enablePlugins(PlayScala)
|
|
|
|
libraryDependencies ++= Seq(
|
|
guice,
|
|
ws,
|
|
"org.webjars" % "swagger-ui" % "3.1.5",
|
|
"org.scalatest" %% "scalatest" % "3.0.4" % Test,
|
|
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
|
|
)
|