搜索 Gradle 插件

net.eikehirsch.react

这是一个简单的插件,使用 gradle 将 react-tools 用于将 jsx 转换为javascript。

https://github.com/ehirsch/gradle-react-plugin

版本 0.4.1 (最新)

0.4.1

创建于 2017年1月4日。

无版本描述可用。

使用 plugins DSL

plugins {
  id("net.eikehirsch.react") version "0.4.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.eikehirsch.react:gradle-react-plugin:0.4.1")
  }
}

apply(plugin = "net.eikehirsch.react")

使用 plugins DSL

plugins {
  id "net.eikehirsch.react" version "0.4.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.eikehirsch.react:gradle-react-plugin:0.4.1"
  }
}

apply plugin: "net.eikehirsch.react"

了解如何将插件应用于子项目