Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Gradle Dependency Management

You're reading from  Gradle Dependency Management

Product type Book
Published in Jun 2015
Publisher
ISBN-13 9781784392789
Pages 188 pages
Edition 1st Edition
Languages
Author (1):
Hubert Klein Ikkink Hubert Klein Ikkink
Profile icon Hubert Klein Ikkink

Configuring the Bintray plugin


We have configured the required configuration properties to get our project published to Bintray. However, the plugin allows for more configuration. We can see the configuration properties in the following table:

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}

Name

Description

user

This sets the Bintray username.

key

This sets the API key.

configurations

This defines the configuration list with deployable files.

publications

This defines the list of publications to be deployed.

filesSpec

Use CopySpec to define the arbitrary files to be published, which are not part of a publication or configuration.

dryRun

This allows you to execute all tasks without deploying them.

publish

Should version be published after upload, instead of publishing it via the web browser.

pkg.repo

This is the name of the repository.

pkg.name

This is the name of the package.

pkg.userOrg

This is the optional organization name when the repository belongs to an organization.

pkg.desc

This is...