Search Gradle plugins

com.jayfella.jme-devkit

Gradle plugin providing integration for plugins made for the Jme DevKit platform.

https://jmonkeyengine.org

Sources: https://github.com/jayfella/JmeDevKitGradlePlugin

Version 0.0.24 (latest)

Created 25 September 2020.

Gradle plugin providing integration with the Jme DevKit application.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jayfella.jme-devkit") version "0.0.24"
}

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.jayfella.jme-devkit:com.jayfella.jme-devkit.gradle.plugin:0.0.24")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.jayfella.jme-devkit")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jayfella.jme-devkit:com.jayfella.jme-devkit.gradle.plugin:0.0.24")
      }
    }
    
    apply(plugin = "com.jayfella.jme-devkit")
  • Applying plugins to all subprojects .