diff options
author | Evgeny Mandrikov <138671+Godin@users.noreply.github.com> | 2020-03-31 17:40:13 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-03-31 20:03:36 +0000 |
commit | ecb724151b892faeab9a4e0f1408ee8cd8fddc4c (patch) | |
tree | 82db3a7e25f62c232a31437a99b072e9dc04cb68 /build.gradle | |
parent | 6c65627048020ee3069dc8f47b5662c2ef1e2a04 (diff) | |
download | sonarqube-ecb724151b892faeab9a4e0f1408ee8cd8fddc4c.tar.gz sonarqube-ecb724151b892faeab9a4e0f1408ee8cd8fddc4c.zip |
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.
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 2 insertions, 2 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' |