[Build] Bump gradle-node-plugin version to 7.0.1

This change is required to fix a configuration cache problem revealed after migration to Gradle 8.4
^KTI-1473 In Progress
This commit is contained in:
Alexander.Likhachev
2023-10-10 21:25:52 +02:00
committed by Space Team
parent 35960f65fb
commit eab2c6b9b9
6 changed files with 11 additions and 9 deletions
+2
View File
@@ -24,6 +24,7 @@ junit5 = "5.10.0"
junit-platform = "1.10.0" junit-platform = "1.10.0"
android-gradle-plugin = "7.1.3" android-gradle-plugin = "7.1.3"
android-tools = "30.3.1" android-tools = "30.3.1"
gradle-node = "7.0.1"
[libraries] [libraries]
dexMemberList = { module = "com.jakewharton.dex:dex-member-list", version.ref = "dexMemberList" } dexMemberList = { module = "com.jakewharton.dex:dex-member-list", version.ref = "dexMemberList" }
@@ -74,3 +75,4 @@ android-tools-common = { module = "com.android.tools:common", version.ref = "and
[plugins] [plugins]
jetbrains-ideaExt = { id = "org.jetbrains.gradle.plugin.idea-ext", version.ref = "jetbrains-ideaExt" } jetbrains-ideaExt = { id = "org.jetbrains.gradle.plugin.idea-ext", version.ref = "jetbrains-ideaExt" }
gradle-node = { id = "com.github.node-gradle.node", version.ref = "gradle-node" }
+4 -4
View File
@@ -718,10 +718,10 @@
<sha256 value="e02e7e0a9395174bb57bbd4043fb1fa6c4a69aa4da5ce4c65331651d22e89313" origin="Generated by Gradle"/> <sha256 value="e02e7e0a9395174bb57bbd4043fb1fa6c4a69aa4da5ce4c65331651d22e89313" origin="Generated by Gradle"/>
</artifact> </artifact>
</component> </component>
<component group="com.github.node-gradle" name="gradle-node-plugin" version="5.0.0"> <component group="com.github.node-gradle" name="gradle-node-plugin" version="7.0.1">
<artifact name="gradle-node-plugin-5.0.0.jar"> <artifact name="gradle-node-plugin-7.0.1.jar">
<md5 value="de5da9f0a35e64a1d0a80a2f65c28540" origin="Generated by Gradle"/> <md5 value="ae642e0c3d4b84c2c8041e677c862944" origin="Generated by Gradle"/>
<sha256 value="5453ac9499de195c290f46e17d6d1776697bc35142334b479fb2f7b118ddb7f4" origin="Generated by Gradle"/> <sha256 value="4ce71ec2dc44bc0d9a235dfe930cee2e62ee8d6ef734066d44fa0a4931dc7b22" origin="Generated by Gradle"/>
</artifact> </artifact>
</component> </component>
<component group="com.github.virtuald" name="curvesapi" version="1.07"> <component group="com.github.virtuald" name="curvesapi" version="1.07">
+2 -2
View File
@@ -11,7 +11,7 @@ plugins {
kotlin("jvm") kotlin("jvm")
kotlin("plugin.serialization") kotlin("plugin.serialization")
id("jps-compatible") id("jps-compatible")
id("com.github.node-gradle.node") version "5.0.0" alias(libs.plugins.gradle.node)
} }
val cacheRedirectorEnabled = findProperty("cacheRedirectorEnabled")?.toString()?.toBoolean() == true val cacheRedirectorEnabled = findProperty("cacheRedirectorEnabled")?.toString()?.toBoolean() == true
@@ -230,7 +230,7 @@ val generateTypeScriptJsExportOnFileTests by parallel(
fun Test.setupNodeJs() { fun Test.setupNodeJs() {
systemProperty("javascript.engine.path.NodeJs", com.github.gradle.node.variant.VariantComputer() systemProperty("javascript.engine.path.NodeJs", com.github.gradle.node.variant.VariantComputer()
.let { variantComputer -> .let { variantComputer ->
computeNodeExec(node, variantComputer.computeNodeBinDir(node.computedNodeDir)).get() computeNodeExec(node, variantComputer.computeNodeBinDir(node.resolvedNodeDir, node.resolvedPlatform)).get()
} }
) )
} }
+1 -1
View File
@@ -1,7 +1,7 @@
import com.github.gradle.node.npm.task.NpmTask import com.github.gradle.node.npm.task.NpmTask
plugins { plugins {
id("com.github.node-gradle.node") version "5.0.0" alias(libs.plugins.gradle.node)
base base
} }
@@ -7,7 +7,7 @@ import java.io.FileOutputStream
plugins { plugins {
kotlin("js") kotlin("js")
id("com.github.node-gradle.node") version "5.0.0" alias(libs.plugins.gradle.node)
} }
description = "Kotlin-test integration tests for JS IR" description = "Kotlin-test integration tests for JS IR"
@@ -4,7 +4,7 @@ description = "Simple Kotlin/JS tests runner with TeamCity reporter"
plugins { plugins {
id("base") id("base")
id("com.github.node-gradle.node") version "5.0.0" alias(libs.plugins.gradle.node)
} }
publish(sbom = false) publish(sbom = false)