aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorPhilippe Perrin <philippe.perrin@sonarsource.com>2021-09-24 15:23:30 +0200
committersonartech <sonartech@sonarsource.com>2021-09-28 20:03:12 +0000
commit5a3c534591e01f75ee82a0ccc0d4219bcce61167 (patch)
tree83ac90309bdd1b70caf7e753947f9940a0bd7692 /build.gradle
parent51fd9aae7f63f1bf3682f5e7a58558318de5f6bf (diff)
downloadsonarqube-5a3c534591e01f75ee82a0ccc0d4219bcce61167.tar.gz
sonarqube-5a3c534591e01f75ee82a0ccc0d4219bcce61167.zip
Remove unnecessary node & yarn configuration
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle6
1 files changed, 0 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index 4bec275150f..4c67c8dd4d8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -548,12 +548,6 @@ subprojects {
if (file('package.json').exists()) {
apply plugin: 'com.github.node-gradle.node'
- node {
- version = '14.17.5'
- yarnVersion = '1.22.11'
- download = true
- }
-
// the OWASP tool does not support yarn, and its yarn.lock files, so node modules
// should be explicitly installed (yarn task) before running the audit
// See https://github.com/jeremylong/DependencyCheck/issues/2393