搜索 Gradle 插件

版本 0.9.7(最新版)

0.9.7

创建于 2014 年 11 月 24 日。

没有可用的版本描述。

使用 插件 DSL

plugins {
  id("pl.allegro.tech.build.axion.release") version "0.9.7"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("pl.allegro.tech.build:axion-release-plugin:0.9.7")
  }
}

apply(plugin = "pl.allegro.tech.build.axion.release")

使用 插件 DSL

plugins {
  id "pl.allegro.tech.build.axion.release" version "0.9.7"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "pl.allegro.tech.build:axion-release-plugin:0.9.7"
  }
}

apply plugin: "pl.allegro.tech.build.axion.release"

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