Skip to content

Commit

Permalink
add bintrayUpload task v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
madki committed Sep 18, 2015
1 parent ec769db commit 2b95b06
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.3.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
28 changes: 28 additions & 0 deletions portal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,36 @@ android {
}
}

ext {
bintrayRepo = 'maven'
bintrayName = 'portal'
orgName = 'workarounds'

publishedGroupId = 'in.workarounds.portal'
libraryName = 'Portal'
artifact = 'portal'

libraryDescription = 'An android library that makes it easy to use floating UIs'

siteUrl = 'https://github.com/workarounds/portal'
gitUrl = 'https://github.com/workarounds/portal.git'

libraryVersion = '0.0.1'

developerId = 'workarounds'
developerName = 'Workarounds'
developerEmail = '[email protected]'

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


dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
}

apply from: 'https://gist.githubusercontent.com/themadhukiran/6fb1b85f8be3d2bba733/raw/33bbbd3fbc103276cbb48d4a6e3c5e4d12e5f555/installv1.gradle'
apply from: 'https://gist.githubusercontent.com/themadhukiran/e85785036b9ef3b85c63/raw/1fd9bc500586ddd2780fe045aeea05c3bb72e0d8/bintrayv1.gradle'

0 comments on commit 2b95b06

Please sign in to comment.