org.assertj.generator
Owner: Joel Costigliola
Run the AssertJ generator against your source files to generate test sources.
https://github.com/assertj/assertj-generator-gradle-plugin
Sources: https://github.com/assertj/assertj-generator-gradle-plugin
Version 1.1.1 (latest)
1.1.1
Created 19 June 2023.
Run the AssertJ generator against your source files to generate test sources.
Using the plugins DSL:
plugins {
id("org.assertj.generator") version "1.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.assertj:assertj-generator-gradle-plugin:1.1.1")
}
}
apply(plugin = "org.assertj.generator")
Using the plugins DSL:
plugins {
id "org.assertj.generator" version "1.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.assertj:assertj-generator-gradle-plugin:1.1.1"
}
}
apply plugin: "org.assertj.generator"