Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions hadoop-ozone/recon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
<name>Apache Ozone Recon</name>
<modelVersion>4.0.0</modelVersion>
<artifactId>hadoop-ozone-recon</artifactId>
<properties>
<pnpm.version>5.18.9</pnpm.version>
</properties>
<build>
<resources>
<resource>
Expand Down Expand Up @@ -104,12 +107,12 @@
</configuration>
</execution>
<execution>
<id>set pnpm store path</id>
<id>set pnpm@${pnpm.version} store path</id>
<goals>
<goal>npx</goal>
</goals>
<configuration>
<arguments>pnpm config set store-dir ~/.pnpm-store</arguments>
<arguments>pnpm@${pnpm.version} config set store-dir ~/.pnpm-store</arguments>
</configuration>
</execution>
<execution>
Expand All @@ -118,7 +121,7 @@
<goal>npx</goal>
</goals>
<configuration>
<arguments>pnpm install --frozen-lockfile</arguments>
<arguments>pnpm@${pnpm.version} install --frozen-lockfile</arguments>
</configuration>
</execution>
<execution>
Expand All @@ -127,7 +130,7 @@
<goal>npx</goal>
</goals>
<configuration>
<arguments>pnpm run build</arguments>
<arguments>pnpm@${pnpm.version} run build</arguments>
</configuration>
</execution>
</executions>
Expand Down