搜索 Gradle 插件

版本 0.1.0(最新版)

0.1.0

创建于 2016 年 1 月 26 日。

CroLaBeFra Mothership Gradle 插件 - 跨语言基准测试框架

使用插件 DSL

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

使用旧插件应用

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

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

使用插件 DSL

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

使用旧插件应用

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

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

学习如何将插件应用到子项目中