搜索Gradle插件

版本 1.0.0 (最新版本)

1.0.0

创建于 2017年1月19日。

Unity软件包管理器

使用插件DSL

plugins {
  id("com.banderous.gpm") version "1.0.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.outlinegames:plugin:1.0.0")
  }
}

apply(plugin = "com.banderous.gpm")

使用插件DSL

plugins {
  id "com.banderous.gpm" version "1.0.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.outlinegames:plugin:1.0.0"
  }
}

apply plugin: "com.banderous.gpm"

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