Skip to content

Commit

Permalink
Fix maven & bintray gradle plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
manneohlund authored and Manne Öhlund committed Oct 6, 2020
1 parent b90c5fe commit b7706b7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions extensions/diffutil/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'maven-publish'

ext {
LIB_ARTIFACT_NAME = 'SmartRecyclerAdapter DiffUtil'
Expand Down Expand Up @@ -60,3 +61,9 @@ dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.recyclerview:recyclerview:$recyclerview_version"
}

if (project.rootProject.file('local.properties').exists()) {
apply from: '../../maven-local-publish.gradle'
apply from: '../../maven-release-config.gradle'
apply from: '../../maven-release-script.gradle'
}

0 comments on commit b7706b7

Please sign in to comment.