搜索Gradle插件

版本 1.15.0 (最新)

1.15.0

创建时间 2024年2月20日。

将Palantir开源项目的conjure IR发布到开源软件包仓库

使用插件DSL

plugins {
  id("com.palantir.external-publish-conjure") 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-conjure")

使用插件DSL

plugins {
  id "com.palantir.external-publish-conjure" 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-conjure"

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