搜索 Gradle 插件

版本 1.0(最新版本)

1.0

创建于 2020 年 3 月 29 日。

生成 Assertj 断言类。

使用 插件 DSL

plugins {
  id("com.github.carlobellettini.assertj-generator-gradle-plugin-p") version "1.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.carlobellettini:assertj-gradle-plugin-p:1.0")
  }
}

apply(plugin = "com.github.carlobellettini.assertj-generator-gradle-plugin-p")

使用 插件 DSL

plugins {
  id "com.github.carlobellettini.assertj-generator-gradle-plugin-p" version "1.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.carlobellettini:assertj-gradle-plugin-p:1.0"
  }
}

apply plugin: "com.github.carlobellettini.assertj-generator-gradle-plugin-p"

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