@@ -99,11 +99,6 @@ THE SOFTWARE.
99
99
<!-- Make sure to keep the jetty-ee9-maven-plugin version in war/pom.xml in sync with the Jetty release in Winstone: -->
100
100
<winstone .version>8.1</winstone .version>
101
101
<node .version>20.17.0</node .version>
102
- <!-- frontend-maven-plugin will install this Yarn version as bootstrap, then hand over control to Yarn Berry. -->
103
- <yarn .version>1.22.19</yarn .version>
104
- <!-- maven-antrun-plugin will download this Yarn version. -->
105
- <yarn-berry .version>4.5.0</yarn-berry .version>
106
- <yarn-berry .sha256sum>cc00dce5de4f68d11450519a0f69eadf2a1cbe5cc0d8e740bfac817a31d76874</yarn-berry .sha256sum>
107
102
</properties >
108
103
109
104
<!--
@@ -430,66 +425,40 @@ THE SOFTWARE.
430
425
</activation >
431
426
<build >
432
427
<plugins >
433
- <plugin >
434
- <groupId >org.apache.maven.plugins</groupId >
435
- <artifactId >maven-antrun-plugin</artifactId >
436
- <executions >
437
- <execution >
438
- <id >download-yarn</id >
439
- <goals >
440
- <goal >run</goal >
441
- </goals >
442
- <phase >initialize</phase >
443
- <configuration >
444
- <target >
445
- <property name =" yarn.dest" value =" ${project.basedir}/.yarn/releases/yarn-${yarn-berry.version}.cjs" />
446
- <dirname file =" ${yarn.dest}" property =" yarn.dest.dir" />
447
- <mkdir dir =" ${yarn.dest.dir}" />
448
- <get dest =" ${yarn.dest}" src =" https://repo.yarnpkg.com/${yarn-berry.version}/packages/yarnpkg-cli/bin/yarn.js" usetimestamp =" true" />
449
- <checksum algorithm =" SHA-256" file =" ${yarn.dest}" property =" ${yarn-berry.sha256sum}" verifyProperty =" yarn.checksum.matches" />
450
- <condition property =" yarn.checksum.matches.fail" >
451
- <equals arg1 =" ${yarn.checksum.matches}" arg2 =" false" />
452
- </condition >
453
- <fail if =" yarn.checksum.matches.fail" >Checksum error</fail >
454
- <echo file =" ${project.basedir}/.yarnrc.yml" >yarnPath: ${yarn.dest} </echo >
455
- </target >
456
- </configuration >
457
- </execution >
458
- </executions >
459
- </plugin >
460
428
<plugin >
461
429
<groupId >com.github.eirslett</groupId >
462
430
<artifactId >frontend-maven-plugin</artifactId >
463
431
<version >1.15.1</version >
464
432
<executions >
465
433
<execution >
466
- <id >install node and yarn </id >
434
+ <id >install node and corepack </id >
467
435
<goals >
468
- <goal >install-node-and-yarn </goal >
436
+ <goal >install-node-and-corepack </goal >
469
437
</goals >
470
438
<phase >initialize</phase >
471
439
<configuration >
472
440
<nodeVersion >v${node.version} </nodeVersion >
473
- <yarnVersion >v${yarn.version} </yarnVersion >
474
441
<nodeDownloadRoot >https://repo.jenkins-ci.org/nodejs-dist/</nodeDownloadRoot >
475
- <!-- tried to create a mirror for yarnDownloadRoot but it did not work -->
476
442
</configuration >
477
443
</execution >
478
444
<execution >
479
445
<id >yarn install</id >
480
446
<goals >
481
- <goal >yarn </goal >
447
+ <goal >corepack </goal >
482
448
</goals >
483
449
<phase >initialize</phase >
450
+ <configuration >
451
+ <arguments >yarn install</arguments >
452
+ </configuration >
484
453
</execution >
485
454
<execution >
486
455
<id >yarn build</id >
487
456
<goals >
488
- <goal >yarn </goal >
457
+ <goal >corepack </goal >
489
458
</goals >
490
459
<phase >generate-sources</phase >
491
460
<configuration >
492
- <arguments >build</arguments >
461
+ <arguments >yarn build</arguments >
493
462
</configuration >
494
463
</execution >
495
464
</executions >
@@ -517,11 +486,11 @@ THE SOFTWARE.
517
486
<execution >
518
487
<id >yarn lint:ci</id >
519
488
<goals >
520
- <goal >yarn </goal >
489
+ <goal >corepack </goal >
521
490
</goals >
522
491
<phase >test</phase >
523
492
<configuration >
524
- <arguments >lint:ci</arguments >
493
+ <arguments >yarn lint:ci</arguments >
525
494
<skip >${yarn.lint.skip} </skip >
526
495
</configuration >
527
496
</execution >
@@ -550,11 +519,11 @@ THE SOFTWARE.
550
519
<execution >
551
520
<id >yarn lint</id >
552
521
<goals >
553
- <goal >yarn </goal >
522
+ <goal >corepack </goal >
554
523
</goals >
555
524
<phase >test</phase >
556
525
<configuration >
557
- <arguments >lint</arguments >
526
+ <arguments >yarn lint</arguments >
558
527
<skip >${yarn.lint.skip} </skip >
559
528
</configuration >
560
529
</execution >
0 commit comments