Search Gradle plugins

org.grooscript.conversion

Gradle plugin to convert your groovy code to javascript

http://grooscript.org/

Version 1.0.1

1.0.1

Created 03 March 2015.

Improve templates generation and option to type check them

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.grooscript.conversion") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.grooscript:grooscript-gradle-plugin:1.0.1")
      }
    }
    
    apply(plugin = "org.grooscript.conversion")
  • Applying plugins to all subprojects .