Search Gradle plugins

com.jtransc

Convert your code to other languages and platforms!

http://jtransc.com/

Sources: https://github.com/jtransc/jtransc

Using the plugins DSL:

plugins {
  id("com.jtransc") version "0.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.jtransc:jtransc-gradle-plugin:0.6.1")
  }
}

apply(plugin = "com.jtransc")

Using the plugins DSL:

plugins {
  id "com.jtransc" version "0.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.jtransc:jtransc-gradle-plugin:0.6.1"
  }
}

apply plugin: "com.jtransc"

Learn how to apply plugins to subprojects