搜索 Gradle 插件

版本 0.3.0 (最新版本)

0.3.0

创建于 2018 年 7 月 4 日。

用于自定义代码生成过程的插件

使用 插件 DSL

plugins {
  id("de.fhdo.seelab.CodeGenerator") version "0.3.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.SeelabFhdo:CodeGeneratorPlugin:0.3.0")
  }
}

apply(plugin = "de.fhdo.seelab.CodeGenerator")

使用 插件 DSL

plugins {
  id "de.fhdo.seelab.CodeGenerator" version "0.3.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.SeelabFhdo:CodeGeneratorPlugin:0.3.0"
  }
}

apply plugin: "de.fhdo.seelab.CodeGenerator"

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