Search Gradle plugins

Version 0.0.1-SNAPSHOT

Created 04 April 2021.

Plugin to integrate robot framework into gradle.

Using the plugins DSL:

plugins {
  id("de.qualersoft.robotframework") version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.qualersoft:robotframework-gradle-plugin:0.0.1-SNAPSHOT")
  }
}

apply(plugin = "de.qualersoft.robotframework")

Using the plugins DSL:

plugins {
  id "de.qualersoft.robotframework" version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.qualersoft:robotframework-gradle-plugin:0.0.1-SNAPSHOT"
  }
}

apply plugin: "de.qualersoft.robotframework"

Learn how to apply plugins to subprojects