搜索Gradle插件

版本 1.0.5(最新版)

1.0.5

创建于2015年10月27日。

Tangram JPA、JDO、EBean、webapp overlay和minifying插件

使用插件DSL

plugins {
  id("tangram.gradle.plugin") version "1.0.5"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.tangram.gradle.plugin:buildSrc:1.0.5")
  }
}

apply(plugin = "tangram.gradle.plugin")

使用插件DSL

plugins {
  id "tangram.gradle.plugin" version "1.0.5"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.tangram.gradle.plugin:buildSrc:1.0.5"
  }
}

apply plugin: "tangram.gradle.plugin"

了解如何将插件应用到子项目