From 3fedf4f55131e1b5e544792eb216c671eeeca717 Mon Sep 17 00:00:00 2001 From: alzimmermsft <48699787+alzimmermsft@users.noreply.github.com> Date: Mon, 23 Nov 2020 12:14:47 -0800 Subject: [PATCH] Add Default JavaTestVersion to Globals --- eng/pipelines/templates/variables/globals.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eng/pipelines/templates/variables/globals.yml b/eng/pipelines/templates/variables/globals.yml index b8af26ebb576..8d9627b1d78a 100644 --- a/eng/pipelines/templates/variables/globals.yml +++ b/eng/pipelines/templates/variables/globals.yml @@ -9,5 +9,7 @@ variables: AdditionalOptions: '' # format !:, !:,... no trailing comma is necessary PLSkipOptions: '' - # This is the default Java version. It's the version used to build the shipping libraries, spot bugs etc. + # This is the default Java build version. It's the version used to build the shipping libraries, Spotbugs etc. JavaBuildVersion: '1.11' + # This is the default Java test version. It's the version used when running tests. + JavaTestVersion: '1.11'