Skip to content

Commit

Permalink
Added bintray dependencies in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
therealshabi committed Dec 30, 2018
1 parent ab27a29 commit 738cc76
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Expand Up @@ -8,6 +8,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
27 changes: 27 additions & 0 deletions imageslider/build.gradle
Expand Up @@ -2,6 +2,30 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.therealshabi'

ext {
bintrayRepo = 'AutoImageFlipper'
bintrayName = 'AutoImageFlipper'

publishedGroupId = 'com.github.therealshabi'
libraryName = 'AutoImageFlipper'
artifact = 'imageslider'

libraryDescription = 'A carousel like implementation for Android with many functionalities'

siteUrl = 'https://github.com/therealshabi/AutoImageFlipper/'
gitUrl = 'https://github.com/therealshabi/AutoImageFlipper.git'

libraryVersion = '1.5.1'

developerId = 'therealshabi'
developerName = 'Shahbaz Hussain'
developerEmail = 'shahbaz.h96@gmail.com'

licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}

android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
Expand Down Expand Up @@ -32,3 +56,6 @@ dependencies {
implementation 'androidx.multidex:multidex:2.0.1'
testImplementation 'junit:junit:4.12'
}

apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

0 comments on commit 738cc76

Please sign in to comment.