systems.manifold.manifold-gradle-plugin
Owner:
Kyle Moore
Manifold is a Java compiler plugin, its features include Metaprogramming, Properties, Extension Methods, Operator Overloading, a Preprocessor, and a lot more. This Gradle plugin configures JavaCompile tasks to support the manifold compiler plugin.
Sources: https://github.com/manifold-systems/manifold-gradle-plugin
Version 0.0.2-alpha (latest)
Created 24 September 2021.
Manifold is a Java compiler plugin, its features include Metaprogramming, Properties, Extension Methods, Operator Overloading, a Preprocessor, and a lot more.
This Gradle plugin configures JavaCompile tasks to support the manifold compiler plugin.
Add this plugin to your build using the plugins DSL:
plugins {
id("systems.manifold.manifold-gradle-plugin") version "0.0.2-alpha"
}
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("systems.manifold.manifold-gradle-plugin:systems.manifold.manifold-gradle-plugin.gradle.plugin:0.0.2-alpha") }
It can then be applied in the precompiled script plugin:plugins { id("systems.manifold.manifold-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("systems.manifold.manifold-gradle-plugin:systems.manifold.manifold-gradle-plugin.gradle.plugin:0.0.2-alpha") } } apply(plugin = "systems.manifold.manifold-gradle-plugin")
- Applying plugins to all subprojects .