Search Gradle plugins

io.qalipsis.bootstrap

A plugins that helps you to create new projects for QALIPSIS, a load, performance and end-to-end testing software

https://qalipsis.io

Sources: https://github.com/qalipsis/qalipsis-gradle-plugin.git

Version 0.1.1 (latest)

0.1.1

Created 21 May 2024.

Simplify the creation of new QALIPSIS projects and integration into CI/CD pipelines

Using the plugins DSL:

plugins {
  id("io.qalipsis.bootstrap") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.qalipsis.gradle:plugin:0.1.1")
  }
}

apply(plugin = "io.qalipsis.bootstrap")

Using the plugins DSL:

plugins {
  id "io.qalipsis.bootstrap" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.qalipsis.gradle:plugin:0.1.1"
  }
}

apply plugin: "io.qalipsis.bootstrap"

Learn how to apply plugins to subprojects