forked from loafle/openapi-generator-original
[Java][Client] Fix Gradle and SBT builds for REST Assured generator (#5990)
* Fix Gradle and SBT builds for Java REST Assured generator * Add missing jackson-databind-nullable dependency to SBT build * Update rest-assured sample * Add sample for Java client with REST Assured and Jackson * Add new REST Assured sample as Maven sub-module
This commit is contained in:
@@ -10,13 +10,15 @@ lazy val root = (project in file(".")).
|
||||
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.google.code.gson" % "gson" % "2.8.6",
|
||||
"io.gsonfire" % "gson-fire" % "1.8.4" % "compile",
|
||||
"org.threeten" % "threetenbp" % "1.4.3" % "compile",
|
||||
"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",
|
||||
"org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
|
||||
"junit" % "junit" % "4.13" % "test",
|
||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user