com.palantir.external-publish-conjure
将Palantir开源项目的conjure IR发布到开源软件包仓库
https://github.com/palantir/gradle-external-publish-plugin
源: https://github.com/palantir/gradle-external-publish-plugin
使用插件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"