mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
803f337d24
* rename scala-lagom to scala-lagom-server * add back pom.xml and shell script * update scala-lagom-server path in circleci pom.xml * make shell script executable * rename batch file
17 lines
278 B
Scala
17 lines
278 B
Scala
version := "1.0.0"
|
|
|
|
name := "scala-lagom-server"
|
|
|
|
organization := "io.swagger"
|
|
|
|
scalaVersion := "2.11.8"
|
|
|
|
val playJsonDerivedCodecs = "org.julienrf" %% "play-json-derived-codecs" % "3.3"
|
|
|
|
libraryDependencies ++= Seq(
|
|
lagomScaladslApi,
|
|
playJsonDerivedCodecs
|
|
)
|
|
|
|
|