forked from loafle/openapi-generator-original
update dependencies in build.sbt to newer versions (#10667)
This commit is contained in:
parent
2875c7e14d
commit
bb37a71d06
@ -5,39 +5,43 @@ lazy val root = (project in file(".")).
|
|||||||
version := "{{artifactVersion}}",
|
version := "{{artifactVersion}}",
|
||||||
scalaVersion := "2.11.4",
|
scalaVersion := "2.11.4",
|
||||||
scalacOptions ++= Seq("-feature"),
|
scalacOptions ++= Seq("-feature"),
|
||||||
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
Compile / javacOptions ++= Seq("-Xlint:deprecation"),
|
||||||
publishArtifact in (Compile, packageDoc) := false,
|
Compile / packageDoc / publishArtifact := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"com.google.code.findbugs" % "jsr305" % "3.0.0",
|
||||||
"org.glassfish.jersey.core" % "jersey-client" % "2.27",
|
"io.swagger" % "swagger-annotations" % "1.6.3",
|
||||||
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.27",
|
"org.glassfish.jersey.core" % "jersey-client" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.27",
|
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.35",
|
||||||
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.5" % "compile",
|
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.0" % "compile",
|
||||||
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.0" % "compile",
|
||||||
{{#joda}}
|
{{#joda}}
|
||||||
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % "2.9.10" % "compile",
|
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % "2.13.0" % "compile",
|
||||||
{{/joda}}
|
{{/joda}}
|
||||||
{{#java8}}
|
{{#java8}}
|
||||||
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
|
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.13.0" % "compile",
|
||||||
{{/java8}}
|
{{/java8}}
|
||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
|
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.12.5" % "compile",
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
{{#openApiNullable}}
|
||||||
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.1" % "compile",
|
||||||
|
{{/openApiNullable}}
|
||||||
{{#hasOAuthMethods}}
|
{{#hasOAuthMethods}}
|
||||||
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
|
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
|
||||||
{{/hasOAuthMethods}}
|
{{/hasOAuthMethods}}
|
||||||
{{#hasHttpSignatureMethods}}
|
{{#hasHttpSignatureMethods}}
|
||||||
"org.tomitribe" % "tomitribe-http-signatures" % "1.5" % "compile",
|
"org.tomitribe" % "tomitribe-http-signatures" % "1.7" % "compile",
|
||||||
{{/hasHttpSignatureMethods}}
|
{{/hasHttpSignatureMethods}}
|
||||||
{{^java8}}
|
{{^java8}}
|
||||||
"com.brsanthu" % "migbase64" % "2.2",
|
"com.brsanthu" % "migbase64" % "2.2",
|
||||||
{{/java8}}
|
{{/java8}}
|
||||||
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
||||||
"junit" % "junit" % "4.13.1" % "test",
|
"junit" % "junit" % "4.13.2" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -5,23 +5,25 @@ lazy val root = (project in file(".")).
|
|||||||
version := "1.0.0",
|
version := "1.0.0",
|
||||||
scalaVersion := "2.11.4",
|
scalaVersion := "2.11.4",
|
||||||
scalacOptions ++= Seq("-feature"),
|
scalacOptions ++= Seq("-feature"),
|
||||||
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
Compile / javacOptions ++= Seq("-Xlint:deprecation"),
|
||||||
publishArtifact in (Compile, packageDoc) := false,
|
Compile / packageDoc / publishArtifact := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"com.google.code.findbugs" % "jsr305" % "3.0.0",
|
||||||
"org.glassfish.jersey.core" % "jersey-client" % "2.27",
|
"io.swagger" % "swagger-annotations" % "1.6.3",
|
||||||
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.27",
|
"org.glassfish.jersey.core" % "jersey-client" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.27",
|
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.35",
|
||||||
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.5" % "compile",
|
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.0" % "compile",
|
||||||
|
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.13.0" % "compile",
|
||||||
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.1" % "compile",
|
||||||
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
|
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
|
||||||
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
||||||
"junit" % "junit" % "4.13.1" % "test",
|
"junit" % "junit" % "4.13.2" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -5,23 +5,25 @@ lazy val root = (project in file(".")).
|
|||||||
version := "1.0.0",
|
version := "1.0.0",
|
||||||
scalaVersion := "2.11.4",
|
scalaVersion := "2.11.4",
|
||||||
scalacOptions ++= Seq("-feature"),
|
scalacOptions ++= Seq("-feature"),
|
||||||
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
Compile / javacOptions ++= Seq("-Xlint:deprecation"),
|
||||||
publishArtifact in (Compile, packageDoc) := false,
|
Compile / packageDoc / publishArtifact := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"com.google.code.findbugs" % "jsr305" % "3.0.0",
|
||||||
"org.glassfish.jersey.core" % "jersey-client" % "2.27",
|
"io.swagger" % "swagger-annotations" % "1.6.3",
|
||||||
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.27",
|
"org.glassfish.jersey.core" % "jersey-client" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.27",
|
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.35",
|
||||||
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.5" % "compile",
|
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.0" % "compile",
|
||||||
|
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.13.0" % "compile",
|
||||||
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.1" % "compile",
|
||||||
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
|
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
|
||||||
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
||||||
"junit" % "junit" % "4.13.1" % "test",
|
"junit" % "junit" % "4.13.2" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -5,23 +5,25 @@ lazy val root = (project in file(".")).
|
|||||||
version := "1.0.0",
|
version := "1.0.0",
|
||||||
scalaVersion := "2.11.4",
|
scalaVersion := "2.11.4",
|
||||||
scalacOptions ++= Seq("-feature"),
|
scalacOptions ++= Seq("-feature"),
|
||||||
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
Compile / javacOptions ++= Seq("-Xlint:deprecation"),
|
||||||
publishArtifact in (Compile, packageDoc) := false,
|
Compile / packageDoc / publishArtifact := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"com.google.code.findbugs" % "jsr305" % "3.0.0",
|
||||||
"org.glassfish.jersey.core" % "jersey-client" % "2.27",
|
"io.swagger" % "swagger-annotations" % "1.6.3",
|
||||||
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.27",
|
"org.glassfish.jersey.core" % "jersey-client" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.27",
|
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.35",
|
||||||
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.5" % "compile",
|
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.0" % "compile",
|
||||||
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.0" % "compile",
|
||||||
|
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.12.5" % "compile",
|
||||||
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.1" % "compile",
|
||||||
"com.brsanthu" % "migbase64" % "2.2",
|
"com.brsanthu" % "migbase64" % "2.2",
|
||||||
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
||||||
"junit" % "junit" % "4.13.1" % "test",
|
"junit" % "junit" % "4.13.2" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -5,22 +5,24 @@ lazy val root = (project in file(".")).
|
|||||||
version := "1.0.0",
|
version := "1.0.0",
|
||||||
scalaVersion := "2.11.4",
|
scalaVersion := "2.11.4",
|
||||||
scalacOptions ++= Seq("-feature"),
|
scalacOptions ++= Seq("-feature"),
|
||||||
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
Compile / javacOptions ++= Seq("-Xlint:deprecation"),
|
||||||
publishArtifact in (Compile, packageDoc) := false,
|
Compile / packageDoc / publishArtifact := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"com.google.code.findbugs" % "jsr305" % "3.0.0",
|
||||||
"org.glassfish.jersey.core" % "jersey-client" % "2.27",
|
"io.swagger" % "swagger-annotations" % "1.6.3",
|
||||||
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.27",
|
"org.glassfish.jersey.core" % "jersey-client" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.27",
|
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.35",
|
||||||
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.5" % "compile",
|
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.0" % "compile",
|
||||||
|
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.13.0" % "compile",
|
||||||
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.1" % "compile",
|
||||||
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
||||||
"junit" % "junit" % "4.13.1" % "test",
|
"junit" % "junit" % "4.13.2" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -5,24 +5,26 @@ lazy val root = (project in file(".")).
|
|||||||
version := "1.0.0",
|
version := "1.0.0",
|
||||||
scalaVersion := "2.11.4",
|
scalaVersion := "2.11.4",
|
||||||
scalacOptions ++= Seq("-feature"),
|
scalacOptions ++= Seq("-feature"),
|
||||||
javacOptions in compile ++= Seq("-Xlint:deprecation"),
|
Compile / javacOptions ++= Seq("-Xlint:deprecation"),
|
||||||
publishArtifact in (Compile, packageDoc) := false,
|
Compile / packageDoc / publishArtifact := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"com.google.code.findbugs" % "jsr305" % "3.0.0",
|
||||||
"org.glassfish.jersey.core" % "jersey-client" % "2.27",
|
"io.swagger" % "swagger-annotations" % "1.6.3",
|
||||||
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.27",
|
"org.glassfish.jersey.core" % "jersey-client" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.27",
|
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.35",
|
||||||
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.35",
|
||||||
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.27",
|
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.5" % "compile",
|
"org.glassfish.jersey.connectors" % "jersey-apache-connector" % "2.35",
|
||||||
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-core" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.5.1" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.0" % "compile",
|
||||||
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.0" % "compile",
|
||||||
|
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.13.0" % "compile",
|
||||||
|
"org.openapitools" % "jackson-databind-nullable" % "0.2.1" % "compile",
|
||||||
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
|
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
|
||||||
"org.tomitribe" % "tomitribe-http-signatures" % "1.5" % "compile",
|
"org.tomitribe" % "tomitribe-http-signatures" % "1.7" % "compile",
|
||||||
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
|
||||||
"junit" % "junit" % "4.13.1" % "test",
|
"junit" % "junit" % "4.13.2" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user