Search Gradle plugins

com.kazurayam.inspectus4katalon

adds 'gradle drivers' task which downloads required jars from the Maven Central repository to locate them into the Drivers folder of a Katalon Studio project

https://kazurayam.github.io/inspectus4katalon-gradle-plugin/

Sources: https://github.com/kazurayam/inspectus4katalon-gradle-plugin

Version 0.6.1 (latest)

Created 17 November 2024.

adds 'gradle drivers' task which downloads required jars from the Maven Central repository to locate them into the Drivers folder of a Katalon Studio project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.kazurayam.inspectus4katalon") version "0.6.1"
}

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