搜索 Gradle 插件

io.github.robhogan.noderesolver

所有者: Rob Hogan

一个 Gradle 插件,用于正确处理 settings.gradle 中的 node_modules 路径

https://reactnative.net.cn

来源: https://github.com/facebook/react-native

版本 0.2.0-alpha-4 (最新版本)

0.2.0-alpha-4

创建于 2024 年 1 月 23 日。

一个 Gradle 插件,用于正确处理 build/settings.gradle 中的 node_modules 路径

使用 plugins DSL

plugins {
  id("io.github.robhogan.noderesolver") version "0.2.0-alpha-4"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.robhogan:plugin:0.2.0-alpha-4")
  }
}

apply(plugin = "io.github.robhogan.noderesolver")

使用 plugins DSL

plugins {
  id "io.github.robhogan.noderesolver" version "0.2.0-alpha-4"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.robhogan:plugin:0.2.0-alpha-4"
  }
}

apply plugin: "io.github.robhogan.noderesolver"

学习如何将插件应用于子项目