net.eikehirsch.react
A simple plugin to use the react-tools to transform jsx to javascript using gradle.
https://github.com/ehirsch/gradle-react-plugin
Version 0.4.1 (latest)
0.4.1
Created 04 January 2017.
No version description available.
Using the plugins DSL:
plugins {
id("net.eikehirsch.react") version "0.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.eikehirsch.react:gradle-react-plugin:0.4.1")
}
}
apply(plugin = "net.eikehirsch.react")
Using the plugins DSL:
plugins {
id "net.eikehirsch.react" version "0.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.eikehirsch.react:gradle-react-plugin:0.4.1"
}
}
apply plugin: "net.eikehirsch.react"