forked from loafle/openapi-generator-original
* update rest assured to use junit 5 * regenerate samples * update junit from 4 to 5 for retrofit2, vertx * update vertx test template
26 lines
1.1 KiB
Scala
26 lines
1.1 KiB
Scala
lazy val root = (project in file(".")).
|
|
settings(
|
|
organization := "org.openapitools",
|
|
name := "petstore-rest-assured",
|
|
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.6.6",
|
|
"io.rest-assured" % "rest-assured" % "4.5.1",
|
|
"io.rest-assured" % "scala-support" % "4.5.1",
|
|
"com.google.code.findbugs" % "jsr305" % "3.0.2",
|
|
"com.google.code.gson" % "gson" % "2.8.9",
|
|
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
|
|
"com.squareup.okio" % "okio" % "1.17.5" % "compile",
|
|
"jakarta.validation" % "jakarta.validation-api" % "3.0.2" % "compile",
|
|
"org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
|
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
|
"org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
|
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
|
)
|
|
)
|