com.github.dimamura.assertj-generator
Owner:
Daisuke Imamura
Generate Assertj assertion classes. (forked from com.github.fhermansson.assertj-generator, update dependencies include assertj-assertions-generator 2.2.0.)
https://github.com/dimamura/assertj-generator-gradle-plugin
Version 1.1.3-SNAPSHOT.0.5 (latest)
Created 30 December 2020.
Generate Assertj assertion classes. (forked from com.github.fhermansson.assertj-generator, update dependencies include assertj-assertions-generator 2.2.0.)
Using the plugins DSL:
plugins {
id("com.github.dimamura.assertj-generator") version "1.1.3-SNAPSHOT.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.dimamura:assertj-gradle-plugin:1.1.3-SNAPSHOT.0.5")
}
}
apply(plugin = "com.github.dimamura.assertj-generator")
Using the plugins DSL:
plugins {
id "com.github.dimamura.assertj-generator" version "1.1.3-SNAPSHOT.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.dimamura:assertj-gradle-plugin:1.1.3-SNAPSHOT.0.5"
}
}
apply plugin: "com.github.dimamura.assertj-generator"