搜索 Gradle 插件

版本 0.0.3 (最新版本)

0.0.3

创建于 2020 年 9 月 21 日。

Jamplate 是一个用于 java 的 C-Style 预处理器

使用 plugins DSL

plugins {
  id("org.cufy.jamplate") version "0.0.3"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.cufy:jamplate:0.0.3")
  }
}

apply(plugin = "org.cufy.jamplate")

使用 plugins DSL

plugins {
  id "org.cufy.jamplate" version "0.0.3"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.cufy:jamplate:0.0.3"
  }
}

apply plugin: "org.cufy.jamplate"

了解如何将插件应用到子项目中