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

Avoid maintaining version in multiple locations. Let users read the Bintray badge. #203

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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To apply the plugin, please add one of the following snippets to your `build.gra
###### Gradle >= 2.1
```groovy
plugins {
id "com.jfrog.bintray" version "1.+"
id "com.jfrog.bintray" version "$gradleBintrayPluginVersion"
}
```
* Currently the "plugins" notation cannot be used for applying the plugin for sub projects, when used from the root build script.
Expand All @@ -43,7 +43,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradleBintrayPluginVersion"
}
}
apply plugin: 'com.jfrog.bintray'
Expand Down