Owner:
James Khan
Gradle plugin providing integration for plugins made for the Jme DevKit platform.
Version 0.0.15
Created 06 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.15"
}
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.15") }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.15") } } apply(plugin = "com.jayfella.jme-devkit") - Applying plugins to all subprojects .