Search Gradle plugins

Version 0.1.0 (latest)

Created 26 January 2016.

CroLaBeFra Mothership Gradle Plugin - Cross-language Benchmarking Framework

Using the plugins DSL:

plugins {
  id("com.comsysto.gradle.crolabefra.mothership") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.comsysto.gradle:crolabefra-mothership:0.1.0")
  }
}

apply(plugin = "com.comsysto.gradle.crolabefra.mothership")

Using the plugins DSL:

plugins {
  id "com.comsysto.gradle.crolabefra.mothership" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.comsysto.gradle:crolabefra-mothership:0.1.0"
  }
}

apply plugin: "com.comsysto.gradle.crolabefra.mothership"

Learn how to apply plugins to subprojects