Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #181

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ The plugin supports three methods to create groups of artifacts: Configurations,
* Applying the *maven-publish* plugin is required when using Maven Publications.
* To avoid [this](https://github.com/gradle/gradle/issues/1118) issue, which can cause transitive dependencies of your published artifacts not to be included, make sure to apply the *java-library* plugin to your build script. Applying the plugin resolves the issue for Gradle version 3.4 and above. For Gradle versions below 3.4, you can use [this](https://gist.github.com/bugs84/b7887fb5d7f9f2d484b8) workaround.
* Ivy Publications are not supported.

* Signing Maven publications with GPG is currently [not supported](https://docs.gradle.org/current/userguide/signing_plugin.html), which is important for syncing to Maven Central. You can setup Bintray to sign automatically any uploaded packages for you by following [these instructions](https://blog.bintray.com/2014/02/11/bintray-as-pain-free-gateway-to-maven-central/).
* Note that you must export a GPG private key that does not include a passphrase to Bintray.
* You must edit the repository to enable uploaded packages to be automaticaly signed.
* The new settings will take into effect for new uploads only.

Below you can find an example for Maven Publication that can be added to your Gradle script:

```groovy
Expand Down