com.github.opengl-BOBOuramente
所有者: opengl-8080
Gradle 插件,用于生成 AssertJ 断言类。
https://github.com/opengl-8080/assertjGen-gradle-plugin
源代码: https://github.com/opengl-8080/assertjGen-gradle-plugin
使用 插件 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"