com.waftex.assertj-generator
Owner: Guy Bolton King
Generate Assertj assertion classes. Forked from com.github.fhermansson.assertj-generator via com.github.dimamura.assertj-generator, with latest assertj generator and Gradle 7 compatibility
https://github.com/guyboltonking/assertj-generator-gradle-plugin
Sources: https://github.com/guyboltonking/assertj-generator-gradle-plugin
Version 1.1.4 (latest)
1.1.4
Created 02 July 2021.
Generate Assertj assertion classes.
Forked from com.github.fhermansson.assertj-generator via
com.github.dimamura.assertj-generator, with latest assertj generator and
Gradle 7 compatibility
Using the plugins DSL:
plugins {
id("com.waftex.assertj-generator") version "1.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.waftex.gradle:assertj-generator:1.1.4")
}
}
apply(plugin = "com.waftex.assertj-generator")
Using the plugins DSL:
plugins {
id "com.waftex.assertj-generator" version "1.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.waftex.gradle:assertj-generator:1.1.4"
}
}
apply plugin: "com.waftex.assertj-generator"