搜索 Gradle 插件

版本 1.1.8(最新版)

1.1.8

创建于 2017 年 10 月 5 日。

Gradle 插件,用于生成 AssertJ 断言类。

使用 插件 DSL

plugins {
  id("com.github.opengl-BOBO.assertjGen") version "1.1.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.opengl-8080:assertjGen-gradle-plugin:1.1.8")
  }
}

apply(plugin = "com.github.opengl-BOBO.assertjGen")

使用 插件 DSL

plugins {
  id "com.github.opengl-BOBO.assertjGen" version "1.1.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.opengl-8080:assertjGen-gradle-plugin:1.1.8"
  }
}

apply plugin: "com.github.opengl-BOBO.assertjGen"

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