forked from loafle/openapi-generator-original
* Fix usage of javax.annotation:javax.annotation-api * Regenerate samples ``` bin/generate-samples.sh bin/configs/java-* bin/configs/jaxrs-* bin/configs/spring-* bin/configs/kotlin-* bin/configs/other/java-* bin/configs/other/jaxrs-* bin/configs/other/kotlin-* bin/configs/other/openapi3/jaxrs-cxf-client.yaml bin/configs/other/openapi3/kotlin-* ```
29 lines
1.3 KiB
Scala
29 lines
1.3 KiB
Scala
lazy val root = (project in file(".")).
|
|
settings(
|
|
organization := "org.openapitools",
|
|
name := "petstore-rest-assured-jackson",
|
|
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.21",
|
|
"io.rest-assured" % "rest-assured" % "4.3.0",
|
|
"io.rest-assured" % "scala-support" % "4.3.0",
|
|
"com.google.code.findbugs" % "jsr305" % "3.0.2",
|
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.3",
|
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.3",
|
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.3",
|
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.1",
|
|
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.10.3",
|
|
"com.squareup.okio" % "okio" % "1.17.5" % "compile",
|
|
"javax.validation" % "validation-api" % "2.0.1.Final" % "compile",
|
|
"org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
|
|
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
|
|
"junit" % "junit" % "4.13" % "test",
|
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
|
)
|
|
)
|