Skip to content

Commit b2c39b8

Browse files
committed
Updated bintray plugin and using gradle maven plugin publication to deploy on bintray
1 parent 340a770 commit b2c39b8

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In this way every item of the recycler view has its own set of files, resulting
3737
## <a name="setup"></a>Setup
3838
In your gradle dependencies add:
3939
```groovy
40-
def recyclerAdapterVersion = "2.8.0" // change it with the version you want to use
40+
def recyclerAdapterVersion = "2.8.1" // change it with the version you want to use
4141
implementation "net.gotev:recycleradapter:$recyclerAdapterVersion"
4242
```
4343
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)

manifest.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ext {
1010
library_licenses = ["Apache-2.0"]
1111
library_licenses_url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
1212
library_project_group = 'net.gotev'
13-
library_version = '2.8.0'
13+
library_version = '2.8.1'
1414
version_code = 5
1515
min_sdk = 18
1616
target_sdk = 28
@@ -20,7 +20,7 @@ ext {
2020
kotlin_version = '1.3.41'
2121
gradle_version = '3.4.1'
2222
gradle_versions_plugin_version = '0.20.0'
23-
bintray_plugin_version = '1.7'
23+
bintray_plugin_version = '1.8.4'
2424

2525
// Library and app testing dependencies versions
2626
junit_version = '4.12'

recycleradapter-extensions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ dependencies {
8787
bintray {
8888
user = properties.getProperty("bintray.user")
8989
key = properties.getProperty("bintray.apikey")
90-
configurations = ['archives']
90+
publications = ['mavenPublish']
9191
pkg {
9292
repo = "maven"
9393
name = mavProjectName

recycleradapter-paging/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ dependencies {
8989
bintray {
9090
user = properties.getProperty("bintray.user")
9191
key = properties.getProperty("bintray.apikey")
92-
configurations = ['archives']
92+
publications = ['mavenPublish']
9393
pkg {
9494
repo = "maven"
9595
name = mavProjectName

recycleradapter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ dependencies {
8080
bintray {
8181
user = properties.getProperty("bintray.user")
8282
key = properties.getProperty("bintray.apikey")
83-
configurations = ['archives']
83+
publications = ['mavenPublish']
8484
pkg {
8585
repo = "maven"
8686
name = mavProjectName

release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
./gradlew clean bintrayUpload
2+
./gradlew clean publish bintrayUpload
33

0 commit comments

Comments
 (0)