mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
28 lines
1.2 KiB
Scala
28 lines
1.2 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",
|
|
"org.apache.commons" % "commons-lang3" % "3.5",
|
|
"commons-io" % "commons-io" % "2.5",
|
|
"junit" % "junit" % "4.12" % "test",
|
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
|
)
|
|
)
|