Skip to content

Commit

Permalink
improvement(jib): added openjdk 13
Browse files Browse the repository at this point in the history
It has already been available in the list of supported JDKs, see `openJdkSpecs`.
  • Loading branch information
vvagaytsev committed Aug 17, 2022
1 parent 203ef35 commit 12ffec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/jib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const jibModuleSchema = () =>
The type of project to build. Defaults to auto-detecting between gradle and maven (based on which files/directories are found in the module root), but in some cases you may need to specify it.
`
),
jdkVersion: joi.number().integer().valid(8, 11).default(11).description("The JDK version to use."),
jdkVersion: joi.number().integer().valid(8, 11, 13).default(11).description("The JDK version to use."),
dockerBuild: joi
.boolean()
.default(false)
Expand Down

0 comments on commit 12ffec5

Please sign in to comment.