com.github.opengl-BOBO.assertjGen2
Owner: opengl-8080
Gradle plugin that generate AssertJ assertion class.
https://github.com/opengl-8080/assertjGen-gradle-plugin
Sources: https://github.com/opengl-8080/assertjGen-gradle-plugin
Version 2.0.0 (latest)
2.0.0
Created 10 December 2017.
Gradle plugin that generate AssertJ assertion class.
Using the plugins DSL:
plugins {
id("com.github.opengl-BOBO.assertjGen2") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.opengl-8080:assertjGen-gradle-plugin:2.0.0")
}
}
apply(plugin = "com.github.opengl-BOBO.assertjGen2")
Using the plugins DSL:
plugins {
id "com.github.opengl-BOBO.assertjGen2" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.opengl-8080:assertjGen-gradle-plugin:2.0.0"
}
}
apply plugin: "com.github.opengl-BOBO.assertjGen2"