Search Gradle plugins

com.jtransc

Convert your code to other languages and platforms!

http://jtransc.com/

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

Version 0.6.8 (latest)

Created 14 January 2018.

Convert your code to other languages and platforms!

Using the plugins DSL:

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

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.8")
  }
}

apply(plugin = "com.jtransc")

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.jtransc"

Learn how to apply plugins to subprojects