Skip to content

Commit 9250965

Browse files
committed
bump jupiter versions
1 parent 13773e4 commit 9250965

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/pit/lib/lib-patch-v25.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ cleanAfterBumpingVersions() {
7272
## This break change is in https://github.com/vaadin/flow-components/issues/5449
7373
## TODO: needs to be documented in vaadin migration guide to 25 and updated in starter repos
7474
updateAppLayoutAfterNavigation() {
75-
find src -name "*.java" -exec grep -l "extends AppLayout" {} + | xargs grep -L "extends AppLayoutElement" | while read file; do
75+
find src -name "*.java" -exec grep -l "extends AppLayout" {} | xargs grep -L "extends AppLayoutElement" | while read file; do
7676
# Check if the file contains afterNavigation method
7777
if grep -q "afterNavigation()" "$file"; then
7878
[ -z "$TEST" ] && warn "updating afterNavigation method in $file" || cmd "## updating afterNavigation method in $file"
@@ -205,19 +205,19 @@ patchTestBenchJUnit() {
205205
block=" <dependency>
206206
<groupId>org.junit.vintage</groupId>
207207
<artifactId>junit-vintage-engine</artifactId>
208-
<version>5.13.1</version>
208+
<version>5.14.0</version>
209209
<scope>test</scope>
210210
</dependency>
211211
<dependency>
212212
<groupId>org.junit.jupiter</groupId>
213213
<artifactId>junit-jupiter-engine</artifactId>
214-
<version>5.13.1</version>
214+
<version>5.14.0</version>
215215
<scope>test</scope>
216216
</dependency>
217217
<dependency>
218218
<groupId>org.junit.platform</groupId>
219219
<artifactId>junit-platform-launcher</artifactId>
220-
<version>1.13.1</version>
220+
<version>1.14.0</version>
221221
<scope>test</scope>
222222
</dependency>"
223223
_cmd="perl -0777 -pi -e 's|(\s*)</dependencies>|\$1$block\$1</dependencies>|' pom.xml"

0 commit comments

Comments
 (0)