Skip to content

Commit df238d0

Browse files
committed
Polishing
1 parent 742c41a commit df238d0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

buildSrc/src/main/java/org/springframework/build/TestConventions.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2023 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -62,9 +62,12 @@ private void configureTests(Project project, Test test) {
6262
if (project.hasProperty("testGroups")) {
6363
test.systemProperty("testGroups", project.getProperties().get("testGroups"));
6464
}
65-
test.jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED",
65+
test.jvmArgs(
66+
"--add-opens=java.base/java.lang=ALL-UNNAMED",
6667
"--add-opens=java.base/java.util=ALL-UNNAMED",
67-
"-Djava.locale.providers=COMPAT", "-Xshare:off");
68+
"-Djava.locale.providers=COMPAT",
69+
"-Xshare:off"
70+
);
6871
}
6972

7073
private void configureTestRetryPlugin(Project project, Test test) {

0 commit comments

Comments
 (0)