Book Image

Gradle Dependency Management

By : Hubert Klein Ikkink
Book Image

Gradle Dependency Management

By: Hubert Klein Ikkink

Overview of this book

Table of Contents (14 chapters)
Gradle Dependency Management
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

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:

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...