搜索 Gradle 插件

systems.manifold.manifold-gradle-plugin

所有者: Kyle Moore

Manifold 是一个 Java 编译器插件,其功能包括元编程、属性、扩展方法、操作符重载、预处理器等。此 Gradle 插件配置 JavaCompile 任务以支持 manifold 编译器插件。

http://manifold.systems/

来源: https://github.com/manifold-systems/manifold-gradle-plugin

版本 0.0.2-alpha (最新)

0.0.2-alpha

创建于 2021 年 9 月 24 日。

Manifold 是一个 Java 编译器插件,其功能包括元编程、属性、扩展方法、操作符重载、预处理器等。此 Gradle 插件配置 JavaCompile 任务以支持 manifold 编译器插件。

使用 plugins DSL

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

使用 旧版插件应用

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

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

使用 plugins DSL

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

使用 旧版插件应用

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

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

学习如何将插件应用到子项目中