搜索 Gradle 插件

版本 0.9 (最新版)

0.9

创建于 2022 年 3 月 18 日。

一个简单的 Java 宏预处理器插件

使用 plugins DSL

plugins {
  id("com.github.hexomod.macro.preprocessor") version "0.9"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.hexomod:MacroPreprocessor:0.9")
  }
}

apply(plugin = "com.github.hexomod.macro.preprocessor")

使用 plugins DSL

plugins {
  id "com.github.hexomod.macro.preprocessor" version "0.9"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.hexomod:MacroPreprocessor:0.9"
  }
}

apply plugin: "com.github.hexomod.macro.preprocessor"

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