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:
-
Clone this project:
-
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
.