org.otherworlds.javascript
Owner: Sergey Fedorov
Gradle plugin for Javascript
https://github.com/otherworlds/javascript
Sources: https://github.com/otherworlds/javascript
Version 0.1 (latest)
0.1
Created 05 March 2017.
Gradle plugin for Javascript
Using the plugins DSL:
plugins {
id("org.otherworlds.javascript") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.otherworlds:javascript:0.1")
}
}
apply(plugin = "org.otherworlds.javascript")
Using the plugins DSL:
plugins {
id "org.otherworlds.javascript" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.otherworlds:javascript:0.1"
}
}
apply plugin: "org.otherworlds.javascript"