搜索 Gradle 插件

版本 1.0.0 (最新)

1.0.0

创建于 2024 年 2 月 20 日。

一个用于 Kotlin 的模板引擎,可以从文本模板创建代码。

使用 插件 DSL

plugins {
  id("net.h34t.tempolin") version "1.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.h34t:tempolin:1.0.0")
  }
}

apply(plugin = "net.h34t.tempolin")

使用 插件 DSL

plugins {
  id "net.h34t.tempolin" version "1.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.h34t:tempolin:1.0.0"
  }
}

apply plugin: "net.h34t.tempolin"

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