Search Gradle plugins

nebula.nebula-ojo-publishing

Plugin for plugins, heavily opinionated about nebula-plugins

https://github.com/nebula-plugins/nebula-bintray-plugin

Version 6.0.6 (latest)

6.0.6

Created 29 March 2019.

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 Uploads snapshots to oss.jfrog.org with Nebula defaults

Using the plugins DSL:

plugins {
  id("nebula.nebula-ojo-publishing") version "6.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:nebula-bintray-plugin:6.0.6")
  }
}

apply(plugin = "nebula.nebula-ojo-publishing")

Using the plugins DSL:

plugins {
  id "nebula.nebula-ojo-publishing" version "6.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:nebula-bintray-plugin:6.0.6"
  }
}

apply plugin: "nebula.nebula-ojo-publishing"

Learn how to apply plugins to subprojects