diff options
Diffstat (limited to 'vid-webpack-master/pom.xml')
-rw-r--r-- | vid-webpack-master/pom.xml | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/vid-webpack-master/pom.xml b/vid-webpack-master/pom.xml index d56a4465c..d556289bd 100644 --- a/vid-webpack-master/pom.xml +++ b/vid-webpack-master/pom.xml @@ -28,6 +28,11 @@ <stagingNexusPath>content/repositories/staging/</stagingNexusPath> <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> <releaseNexusPath>content/repositories/releases/</releaseNexusPath> + + <eirslett.version>1.9.1</eirslett.version> + <node.version>v10.19.0</node.version> + <npm.version>6.14.4</npm.version> + <NPM_CMD>ci</NPM_CMD> </properties> @@ -124,7 +129,7 @@ <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <!-- NB! Set <version> to the latest released version of frontend-maven-plugin, like in README.md --> - <version>1.6</version> + <version>${eirslett.version}</version> <executions> @@ -135,8 +140,8 @@ </goals> <configuration> <!-- See https://nodejs.org/en/download/ for latest node and npm (lts) versions --> - <nodeVersion>v10.15.3</nodeVersion> - <npmVersion>6.9.0</npmVersion> + <npmVersion>${npm.version}</npmVersion> + <nodeVersion>${node.version}</nodeVersion> </configuration> </execution> @@ -177,7 +182,7 @@ <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <!-- NB! Set <version> to the latest released version of frontend-maven-plugin, like in README.md --> - <version>1.6</version> + <version>${eirslett.version}</version> <executions> @@ -188,8 +193,8 @@ </goals> <configuration> <!-- See https://nodejs.org/en/download/ for latest node and npm (lts) versions --> - <nodeVersion>v8.9.4</nodeVersion> - <npmVersion>5.6.0</npmVersion> + <npmVersion>${npm.version}</npmVersion> + <nodeVersion>${node.version}</nodeVersion> </configuration> </execution> |