搜索 Gradle 插件

版本 0.5.1(最新版)

0.5.1

创建于 2024年3月15日。

GitHub Packages Maven 发布(到 Huanshankeji 团队的仓库)

使用 插件 DSL

plugins {
  id("com.huanshankeji.team.github-packages-maven-publish") version "0.5.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji.team:gradle-plugins:0.5.1")
  }
}

apply(plugin = "com.huanshankeji.team.github-packages-maven-publish")

使用 插件 DSL

plugins {
  id "com.huanshankeji.team.github-packages-maven-publish" version "0.5.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji.team:gradle-plugins:0.5.1"
  }
}

apply plugin: "com.huanshankeji.team.github-packages-maven-publish"

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