搜索Gradle插件

版本 1.15.0 (最新版)

1.15.0

创建于2024年2月20日。

从Palantir开源项目将自定义gradle发布内容发布到开源软件包仓库

使用插件DSL

plugins {
  id("com.palantir.external-publish-custom") version "1.15.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.15.0")
  }
}

apply(plugin = "com.palantir.external-publish-custom")

使用插件DSL

plugins {
  id "com.palantir.external-publish-custom" version "1.15.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.15.0"
  }
}

apply plugin: "com.palantir.external-publish-custom"

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