Search Gradle plugins

ch.liquidmind.deflector

Turns checked exceptions into runtime exceptions by generating wrapper classes for arbitrary APIs in Java.

http://www.liquidmind.ch/

Sources: https://github.com/liquid-mind/deflector-gradle-plugin

Version 0.0.3 (latest)

Created 16 July 2015.

Turns checked exceptions into runtime exceptions by generating wrapper classes for arbitrary APIs in Java.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ch.liquidmind.deflector") version "0.0.3"
}

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("ch.liquidmind.deflector:ch.liquidmind.deflector.gradle.plugin:0.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ch.liquidmind.deflector")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ch.liquidmind.deflector:ch.liquidmind.deflector.gradle.plugin:0.0.3")
      }
    }
    
    apply(plugin = "ch.liquidmind.deflector")
  • Applying plugins to all subprojects .