From ecb724151b892faeab9a4e0f1408ee8cd8fddc4c Mon Sep 17 00:00:00 2001 From: Evgeny Mandrikov <138671+Godin@users.noreply.github.com> Date: Tue, 31 Mar 2020 17:40:13 +0200 Subject: [PATCH] Replace Gradle plugin 'com.moowork.node' by 'com.github.node-gradle.node' The latter one is actively maintained fork of the not anymore maintained former. In particular the former does not support Gradle 6.x. --- build.gradle | 4 ++-- server/sonar-web/build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 577e81e0484..5e0caa4b671 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { classpath 'com.github.ben-manes:gradle-versions-plugin:0.28.0' classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0' classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.12' - classpath 'com.moowork.gradle:gradle-node-plugin:1.3.1' + classpath 'com.github.node-gradle:gradle-node-plugin:1.5.3' classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0' classpath 'io.spring.gradle:dependency-management-plugin:1.0.9.RELEASE' classpath 'net.rdrei.android.buildtimetracker:gradle-plugin:0.11.1' @@ -411,7 +411,7 @@ subprojects { } if (file('package.json').exists()) { - apply plugin: 'com.moowork.node' + apply plugin: 'com.github.node-gradle.node' node { version = '10.15.3' diff --git a/server/sonar-web/build.gradle b/server/sonar-web/build.gradle index 7949528eb51..a7d2411047f 100644 --- a/server/sonar-web/build.gradle +++ b/server/sonar-web/build.gradle @@ -10,7 +10,7 @@ sonarqube { } } -apply plugin: 'com.moowork.node' +apply plugin: 'com.github.node-gradle.node' def webappDir = "${buildDir}/webapp" -- 2.39.5