FrontLine Gradle plugin
Gradle plugin to create a package in the format expected by Gatling FrontLine.
Dependency
This plugin applies io.gatling.gradle
.
Dev testing
Steps to be able to dev test this plugin:
-
Checkout this project:
$ git clone [email protected]:gatling/frontline-gradle-plugin.git
-
In a separate directory, create a toy project containing:
-
settings.gradle
:includeBuild '<path/to>/frontline-gradle-plugin'
-
build.gradle
:plugins { id 'java-library' id 'io.gatling.frontline.gradle' } repositories { mavenCentral() jcenter() } sourceCompatibility = 1.8 targetCompatibility = 1.8 tasks.withType(ScalaCompile) { scalaCompileOptions.forkOptions.with { jvmArgs = ['-Xss100M'] } }
-