Skip to content

Commit fc8b7ca

Browse files
committed
Fix scripts
1 parent 4f751cd commit fc8b7ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sdk/spring/scripts/compatibility_update_supported_version_matrix_json.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import argparse
1616

1717
from compatibility_get_spring_cloud_version import get_spring_cloud_version
18-
from _constants import SPRING_BOOT_MAJOR_2_VERSION_NAME, SPRING_BOOT_MAJOR_3_VERSION_NAME
18+
from _constants import SPRING_BOOT_MAJOR_2_VERSION_NAME, SPRING_BOOT_MAJOR_3_VERSION_NAME, SPRING_BOOT_MAJOR_4_VERSION_NAME
1919

2020

2121
def get_args():
@@ -26,9 +26,9 @@ def get_args():
2626
'-sbmvn',
2727
'--spring-boot-major-version-number',
2828
type=str,
29-
choices=[SPRING_BOOT_MAJOR_2_VERSION_NAME, SPRING_BOOT_MAJOR_3_VERSION_NAME],
30-
default=SPRING_BOOT_MAJOR_3_VERSION_NAME,
31-
help='Which major version of Spring Boot to use. The default is ' + SPRING_BOOT_MAJOR_3_VERSION_NAME + '.'
29+
choices=[SPRING_BOOT_MAJOR_2_VERSION_NAME, SPRING_BOOT_MAJOR_3_VERSION_NAME, SPRING_BOOT_MAJOR_4_VERSION_NAME],
30+
default=SPRING_BOOT_MAJOR_4_VERSION_NAME,
31+
help='Which major version of Spring Boot to use. The default is ' + SPRING_BOOT_MAJOR_4_VERSION_NAME + '.'
3232
)
3333
parser.add_argument('-mcp', '--matrix-config-path', type=str, default='sdk/spring/pipeline/supported-version-matrix.json')
3434
parser.add_argument(

0 commit comments

Comments
 (0)