cn.bestwu.profile
Owner: Peter Wu
Profile Gradle Plugin
https://bitbucket.org/betterwu/profile-plugin
Sources: https://bitbucket.org/bestwu/app-plugin
Using the plugins DSL:
plugins {
id("cn.bestwu.profile") version "1.4.31"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.cn.bestwu.gradle:profile-plugin:1.4.31")
}
}
apply(plugin = "cn.bestwu.profile")
Using the plugins DSL:
plugins {
id "cn.bestwu.profile" version "1.4.31"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.cn.bestwu.gradle:profile-plugin:1.4.31"
}
}
apply plugin: "cn.bestwu.profile"