nebula.nebula-bintray-sync-publishing
Owner: Nebula Plugins
Plugin for plugins, heavily opinionated about nebula-plugins
https://github.com/nebula-plugins/nebula-plugin-plugin
Version 1.12.2 (latest)
1.12.2
Created 12 June 2014.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Using the plugins DSL:
plugins {
id("nebula.nebula-bintray-sync-publishing") version "1.12.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-plugin-plugin:1.12.2")
}
}
apply(plugin = "nebula.nebula-bintray-sync-publishing")
Using the plugins DSL:
plugins {
id "nebula.nebula-bintray-sync-publishing" version "1.12.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-plugin-plugin:1.12.2"
}
}
apply plugin: "nebula.nebula-bintray-sync-publishing"