搜索 Gradle 插件

版本 2024-07-13T09-15-00(最新版本)

2024-07-13T09-15-00

创建于 2024 年 7 月 13 日。

使用 Gradle 创建 Debian 打包文件

使用 插件 DSL

plugins {
  id("de.gesellix.debian") version "2024-07-13T09-15-00"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.gesellix:gradle-debian-plugin:2024-07-13T09-15-00")
  }
}

apply(plugin = "de.gesellix.debian")

使用 插件 DSL

plugins {
  id "de.gesellix.debian" version "2024-07-13T09-15-00"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.gesellix:gradle-debian-plugin:2024-07-13T09-15-00"
  }
}

apply plugin: "de.gesellix.debian"

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