Search Gradle plugins

com.jfrog.bintray

A Gradle plugin for publishing to Bintray, with Bintray-specific extensions; Supports both the new and the old Gradle publishing models.

https://github.com/bintray/gradle-bintray-plugin

Version 1.7.1

1.7.1

Created 09 July 2016.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jfrog.bintray") version "1.7.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1")
      }
    }
    
    apply(plugin = "com.jfrog.bintray")
  • Applying plugins to all subprojects .