Skip to content

Commit ddad8af

Browse files
authored
Download Yarn Berry with Corepack rather than Yarn 1.x (#9772)
* Use eirslett/frontend-maven-plugin#1157 * Test 1 * Test 2 * Test 3 * Testing is finished * #9772 (comment) * #9772 (comment)
1 parent 4759f1a commit ddad8af

7 files changed

+20
-73
lines changed

.gitignore

+1-6
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ junit.xml
6565

6666
# Yarn
6767
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
68-
.pnp.*
6968
.yarn/*
70-
.yarnrc.yml
7169
!.yarn/patches
7270
!.yarn/plugins
7371
!.yarn/sdks
@@ -78,7 +76,4 @@ node/
7876
node_modules/
7977

8078
# Generated JavaScript Bundles
81-
jsbundles
82-
83-
# In case someone accidentally runs npm install instead of yarn install
84-
package-lock.json
79+
war/src/main/webapp/jsbundles/

.prettierignore

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ node/
77

88
.git
99

10-
.yarnrc.yml
11-
1210
# libraries / external deps / generated files
1311
war/src/main/js/plugin-setup-wizard/bootstrap-detached.js
1412
war/src/main/webapp/scripts/yui

.yarnrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
enableGlobalCache: false
2+
nodeLinker: node-modules

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ MAVEN_OPTS='--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/ja
5353
### Running the Yarn frontend build
5454

5555
> [!TIP]
56-
> If you already have Node.js installed, you do not need to change your path. Start using `yarn` by enabling [Corepack](https://yarnpkg.com/corepack) with `corepack enable`, if it isn't already; this will add the `yarn` binary to your PATH.
56+
> If you already have Node.js installed, you do not need to change your path. Start using Yarn by enabling [Corepack](https://yarnpkg.com/corepack) with `corepack enable`, if it isn't already; this will add the `yarn` binary to your path.
5757
5858
To run the Yarn frontend build, after [building the WAR file](#building-the-war-file), add the downloaded versions of Node and Yarn to your path:
5959

6060
```sh
61-
export PATH=$PWD/node:$PWD/node/yarn/dist/bin:$PATH
61+
export PATH=$PWD/node:$PWD/node/node_modules/corepack/shims:$PATH
6262
```
6363

6464
Then you can run Yarn with e.g.

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,8 @@
6565
"defaults",
6666
"not IE 11"
6767
],
68+
"engines": {
69+
"node": ">=20.0.0"
70+
},
6871
"packageManager": "[email protected]"
6972
}

pom.xml

+12-43
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,6 @@ THE SOFTWARE.
9999
<!-- Make sure to keep the jetty-ee9-maven-plugin version in war/pom.xml in sync with the Jetty release in Winstone: -->
100100
<winstone.version>8.1</winstone.version>
101101
<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>
107102
</properties>
108103

109104
<!--
@@ -430,66 +425,40 @@ THE SOFTWARE.
430425
</activation>
431426
<build>
432427
<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>
460428
<plugin>
461429
<groupId>com.github.eirslett</groupId>
462430
<artifactId>frontend-maven-plugin</artifactId>
463431
<version>1.15.1</version>
464432
<executions>
465433
<execution>
466-
<id>install node and yarn</id>
434+
<id>install node and corepack</id>
467435
<goals>
468-
<goal>install-node-and-yarn</goal>
436+
<goal>install-node-and-corepack</goal>
469437
</goals>
470438
<phase>initialize</phase>
471439
<configuration>
472440
<nodeVersion>v${node.version}</nodeVersion>
473-
<yarnVersion>v${yarn.version}</yarnVersion>
474441
<nodeDownloadRoot>https://repo.jenkins-ci.org/nodejs-dist/</nodeDownloadRoot>
475-
<!-- tried to create a mirror for yarnDownloadRoot but it did not work -->
476442
</configuration>
477443
</execution>
478444
<execution>
479445
<id>yarn install</id>
480446
<goals>
481-
<goal>yarn</goal>
447+
<goal>corepack</goal>
482448
</goals>
483449
<phase>initialize</phase>
450+
<configuration>
451+
<arguments>yarn install</arguments>
452+
</configuration>
484453
</execution>
485454
<execution>
486455
<id>yarn build</id>
487456
<goals>
488-
<goal>yarn</goal>
457+
<goal>corepack</goal>
489458
</goals>
490459
<phase>generate-sources</phase>
491460
<configuration>
492-
<arguments>build</arguments>
461+
<arguments>yarn build</arguments>
493462
</configuration>
494463
</execution>
495464
</executions>
@@ -517,11 +486,11 @@ THE SOFTWARE.
517486
<execution>
518487
<id>yarn lint:ci</id>
519488
<goals>
520-
<goal>yarn</goal>
489+
<goal>corepack</goal>
521490
</goals>
522491
<phase>test</phase>
523492
<configuration>
524-
<arguments>lint:ci</arguments>
493+
<arguments>yarn lint:ci</arguments>
525494
<skip>${yarn.lint.skip}</skip>
526495
</configuration>
527496
</execution>
@@ -550,11 +519,11 @@ THE SOFTWARE.
550519
<execution>
551520
<id>yarn lint</id>
552521
<goals>
553-
<goal>yarn</goal>
522+
<goal>corepack</goal>
554523
</goals>
555524
<phase>test</phase>
556525
<configuration>
557-
<arguments>lint</arguments>
526+
<arguments>yarn lint</arguments>
558527
<skip>${yarn.lint.skip}</skip>
559528
</configuration>
560529
</execution>

war/.gitignore

-20
This file was deleted.

0 commit comments

Comments
 (0)