Announcing my Bintray plugin

This plugin allows for easily declaring Bintray repositories.

Quick usage example:

repositories {

bintray.jcenter() // Bintray-owned, allows anonymous access

bintray.repo(repoOwner: ‘davidmc24’, repoName: ‘gradle-plugins’) // Uses credentials from gradle.properties

bintray.repo(repoOwner: ‘WowCorp’, repoName: ‘AmazingSoftware’) {

credentials {

username = ‘joe’

password = ‘1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef’

}

}

}

See the project site for more information:

https://bitbucket.org/davidmc24/gradle-bintray-plugin