/gatling-gradle-plugin

Gatling Plugin for Gradle

Primary LanguageGroovyApache License 2.0Apache-2.0

Gatling Plugin for Gradle

Gatling^

GitHub Workflow Status (master) GitHub Gatling User Group

The documentation now lives on the Gatling website and can be found here.

Dev testing

To manually test this plugin in a sample project, see the Gradle documentation. Note that the test project must use Gradle 7.0 or later for includeBuild within pluginManagement to work.

Steps to be able to dev test this plugin:

  1. Clone this project:

  2. In a separate directory, create a toy project containing:

    • settings.gradle:

      ```
      includeBuild '<path/to>/gatling-gradle-plugin'
      ```
    • build.gradle:

      ```groovy
      plugins {
         id 'io.gatling.gradle'
      }
      repositories {
         mavenCentral()
      }
      sourceCompatibility = 1.8
      targetCompatibility = 1.8
      ```

You could also add the maven-publish plugin and do a gradle publishToMavenLocal.