com.dorkbox.CrossCompile
Owner: Dorkbox LLC
Plugin to extract and configure cross-compilation
https://git.dorkbox.com/dorkbox/CrossCompile
Sources: https://git.dorkbox.com/dorkbox/CrossCompile
Version 1.1 (latest)
Created 14 June 2019.
Plugin to auto-configure cross-compilation builds for java projects
Add this plugin to your build using the plugins DSL:
plugins {
id("com.dorkbox.CrossCompile") version "1.1"
}
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.dorkbox.CrossCompile:com.dorkbox.CrossCompile.gradle.plugin:1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.dorkbox.CrossCompile") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dorkbox.CrossCompile:com.dorkbox.CrossCompile.gradle.plugin:1.1") } } apply(plugin = "com.dorkbox.CrossCompile")
- Applying plugins to all subprojects .