Skip to content

Commit

Permalink
Updated bintray plugin and using gradle maven plugin publication to d…
Browse files Browse the repository at this point in the history
…eploy on bintray
  • Loading branch information
gotev committed Jul 18, 2019
1 parent 340a770 commit b2c39b8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ In this way every item of the recycler view has its own set of files, resulting
## <a name="setup"></a>Setup
In your gradle dependencies add:
```groovy
def recyclerAdapterVersion = "2.8.0" // change it with the version you want to use
def recyclerAdapterVersion = "2.8.1" // change it with the version you want to use
implementation "net.gotev:recycleradapter:$recyclerAdapterVersion"
```
This is the latest version: [ ![Download](https://api.bintray.com/packages/gotev/maven/recycler-adapter/images/download.svg) ](https://bintray.com/gotev/maven/recycler-adapter/_latestVersion)
Expand Down
4 changes: 2 additions & 2 deletions manifest.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext {
library_licenses = ["Apache-2.0"]
library_licenses_url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
library_project_group = 'net.gotev'
library_version = '2.8.0'
library_version = '2.8.1'
version_code = 5
min_sdk = 18
target_sdk = 28
Expand All @@ -20,7 +20,7 @@ ext {
kotlin_version = '1.3.41'
gradle_version = '3.4.1'
gradle_versions_plugin_version = '0.20.0'
bintray_plugin_version = '1.7'
bintray_plugin_version = '1.8.4'

// Library and app testing dependencies versions
junit_version = '4.12'
Expand Down
2 changes: 1 addition & 1 deletion recycleradapter-extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ dependencies {
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
publications = ['mavenPublish']
pkg {
repo = "maven"
name = mavProjectName
Expand Down
2 changes: 1 addition & 1 deletion recycleradapter-paging/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ dependencies {
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
publications = ['mavenPublish']
pkg {
repo = "maven"
name = mavProjectName
Expand Down
2 changes: 1 addition & 1 deletion recycleradapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ dependencies {
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
publications = ['mavenPublish']
pkg {
repo = "maven"
name = mavProjectName
Expand Down
2 changes: 1 addition & 1 deletion release
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
./gradlew clean bintrayUpload
./gradlew clean publish bintrayUpload

0 comments on commit b2c39b8

Please sign in to comment.