Skip to content

tbarker9/gradle-bintray-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

This plugin allows you to publish artifacts to a repository on bintray.

Usage

To use the plugin, configure your build.gradle script and add the plugin:

    buildscript {
        repositories {
            maven { url 'http://jcenter.bintray.com' }
        }
        dependencies {
            classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:VERSION'
        }
    }
    apply plugin: 'bintray'

Tasks

The plugin adds the bintrayUpload task to your projects, which allows you to upload to bintray and optionally create the target package. Artifacts can be uploaded from the specified configurations or (the newly supported) publications.

Configuration

build.gradle

    bintray {
        user = 'bintray_user'
        key = 'bintray_api_key'
        configurations = ['deployables']
        publications = ['mavenStuff']
        pkg {
            repo = 'myrepo'
            userOrg = 'myorg' // an optional organization name when the repo belongs to one of the user's orgs
            name = 'mypkg'
            desc = 'a fantastic package, indeed!'
            labels = ['gear', 'gore', 'gorilla']
        }
        dryRun = dry // whether to run this as dry-run, without deploying
    }

License

This plugin is available under the Apache License, Version 2.0.

(c) All rights reserved JFrog

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published