搜索Gradle插件

版本 0.4 (最新)

0.4

创建于2022年3月18日。

一个简单的Java替换令牌预处理器插件

使用插件DSL

plugins {
  id("com.github.hexomod.replace.token.preprocessor") version "0.4"
}

使用旧式插件应用

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

apply(plugin = "com.github.hexomod.replace.token.preprocessor")

使用插件DSL

plugins {
  id "com.github.hexomod.replace.token.preprocessor" version "0.4"
}

使用旧式插件应用

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

apply plugin: "com.github.hexomod.replace.token.preprocessor"

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