Search Gradle plugins

Version 1.19.0 (latest)

1.19.0

Created 18 September 2024.

Publishes distributions from a Palantir open source project to an open source package repository

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.palantir.external-publish-dist") version "1.19.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.19.0")
      }
    }
    
    apply(plugin = "com.palantir.external-publish-dist")
  • Applying plugins to all subprojects .