mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
26 lines
1.1 KiB
Scala
26 lines
1.1 KiB
Scala
lazy val root = (project in file(".")).
|
|
settings(
|
|
organization := "io.swagger",
|
|
name := "swagger-petstore-jersey2",
|
|
version := "1.0.0",
|
|
scalaVersion := "2.11.4",
|
|
scalacOptions ++= Seq("-feature"),
|
|
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
|
publishArtifact in (Compile, packageDoc) := false,
|
|
resolvers += Resolver.mavenLocal,
|
|
libraryDependencies ++= Seq(
|
|
"io.swagger" % "swagger-annotations" % "1.5.8",
|
|
"org.glassfish.jersey.core" % "jersey-client" % "2.22.2",
|
|
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.22.2",
|
|
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.22.2",
|
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.7.5",
|
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.7.5",
|
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.7.5",
|
|
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % "2.7.5",
|
|
"joda-time" % "joda-time" % "2.9.4",
|
|
"com.brsanthu" % "migbase64" % "2.2",
|
|
"junit" % "junit" % "4.12" % "test",
|
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
|
)
|
|
)
|