Search Gradle plugins

Version 1.1.0

1.1.0

Created 15 October 2016.

Gradle plugin that generate AssertJ assertion class.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.opengl-BOBO.assertjGen") version "1.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.opengl-8080:assertjGen-gradle-plugin:1.1.0")
      }
    }
    
    apply(plugin = "com.github.opengl-BOBO.assertjGen")
  • Applying plugins to all subprojects .