com.github.missedone.bintray-p2
Owner: Nick Tan
The Gradle plugin to publish P2 repo to bintray.com
https://github.com/missedone/gradle-bintray-p2-plugin
Sources: https://github.com/missedone/gradle-bintray-p2-plugin
Version 1.0.2 (latest)
1.0.2
Created 24 October 2016.
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
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
The Gradle plugin to publish P2 repo to bintray.com
Using the plugins DSL:
plugins {
id("com.github.missedone.bintray-p2") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.missedone:gradle-bintray-p2-plugin:1.0.2")
}
}
apply(plugin = "com.github.missedone.bintray-p2")
Using the plugins DSL:
plugins {
id "com.github.missedone.bintray-p2" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.missedone:gradle-bintray-p2-plugin:1.0.2"
}
}
apply plugin: "com.github.missedone.bintray-p2"