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!

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.jtransc:com.jtransc.gradle.plugin:0.6.8")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.jtransc")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jtransc:com.jtransc.gradle.plugin:0.6.8")
      }
    }
    
    apply(plugin = "com.jtransc")
  • Applying plugins to all subprojects .