Skip to content

Commit a9576a1

Browse files
authored
fix http signaure auth in build.sbt (#7110)
1 parent 93159de commit a9576a1

File tree

3 files changed

+4
-5
lines changed
  • modules/openapi-generator/src/main/resources/Java/libraries/jersey2
  • samples
    • client/petstore/java/jersey2-java8
    • openapi3/client/petstore/java/jersey2-java8

3 files changed

+4
-5
lines changed

modules/openapi-generator/src/main/resources/Java/libraries/jersey2/build.sbt.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ lazy val root = (project in file(".")).
2828
{{#hasOAuthMethods}}
2929
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
3030
{{/hasOAuthMethods}}
31-
{{#hasHttpBasicMethods}}
32-
"org.tomitribe" % "tomitribe-http-signatures" % "1.3" % "compile",
33-
{{/hasHttpBasicMethods}}
31+
{{#hasHttpSignatureMethods}}
32+
"org.tomitribe" % "tomitribe-http-signatures" % "1.5" % "compile",
33+
{{/hasHttpSignatureMethods}}
3434
{{^java8}}
3535
"com.brsanthu" % "migbase64" % "2.2",
3636
{{/java8}}

samples/client/petstore/java/jersey2-java8/build.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ lazy val root = (project in file(".")).
1818
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.4" % "compile",
1919
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
2020
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
21-
"org.tomitribe" % "tomitribe-http-signatures" % "1.3" % "compile",
2221
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
2322
"junit" % "junit" % "4.13" % "test",
2423
"com.novocode" % "junit-interface" % "0.10" % "test"

samples/openapi3/client/petstore/java/jersey2-java8/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ lazy val root = (project in file(".")).
1818
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.4" % "compile",
1919
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
2020
"com.github.scribejava" % "scribejava-apis" % "6.9.0" % "compile",
21-
"org.tomitribe" % "tomitribe-http-signatures" % "1.3" % "compile",
21+
"org.tomitribe" % "tomitribe-http-signatures" % "1.5" % "compile",
2222
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
2323
"junit" % "junit" % "4.13" % "test",
2424
"com.novocode" % "junit-interface" % "0.10" % "test"

0 commit comments

Comments
 (0)