forked from loafle/openapi-generator-original
* Fix the new package that deal with Configuration (the old one is depecrated) * First version to support Play Framework 2.7 * Fix small problems that prevent compilation of each samples. Now everything is compiling perfectly
12 lines
328 B
Scala
12 lines
328 B
Scala
name := """openapi-java-playframework"""
|
|
|
|
version := "1.0-SNAPSHOT"
|
|
|
|
lazy val root = (project in file(".")).enablePlugins(PlayJava)
|
|
|
|
scalaVersion := "2.12.6"
|
|
|
|
libraryDependencies += "org.webjars" % "swagger-ui" % "3.32.5"
|
|
libraryDependencies += "javax.validation" % "validation-api" % "1.1.0.Final"
|
|
libraryDependencies += guice
|