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)
Created 02 July 2021.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.waftex.assertj-generator") version "1.1.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.waftex.assertj-generator:com.waftex.assertj-generator.gradle.plugin:1.1.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.waftex.assertj-generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.waftex.assertj-generator:com.waftex.assertj-generator.gradle.plugin:1.1.4") } } apply(plugin = "com.waftex.assertj-generator")
- Applying plugins to all subprojects .