Search Gradle plugins

systems.manifold.manifold-gradle-plugin

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.

http://manifold.systems/

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.

Using the plugins DSL:

plugins {
  id("systems.manifold.manifold-gradle-plugin") version "0.0.2-alpha"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("systems.manifold:manifold-gradle-plugin:0.0.2-alpha")
  }
}

apply(plugin = "systems.manifold.manifold-gradle-plugin")

Using the plugins DSL:

plugins {
  id "systems.manifold.manifold-gradle-plugin" version "0.0.2-alpha"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "systems.manifold:manifold-gradle-plugin:0.0.2-alpha"
  }
}

apply plugin: "systems.manifold.manifold-gradle-plugin"

Learn how to apply plugins to subprojects