net.eikehirsch.react
这是一个简单的插件,使用 gradle 将 react-tools 用于将 jsx 转换为javascript。
https://github.com/ehirsch/gradle-react-plugin
使用 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"