Bumped version to 0.6.0 and set up the bintray integration
This commit is contained in:
parent
1e8a1e0346
commit
71896ad65b
2 changed files with 44 additions and 4 deletions
|
@ -22,6 +22,6 @@ buildscript {
|
||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.4.0'
|
classpath 'com.android.tools.build:gradle:3.4.2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,48 @@
|
||||||
group 'cy.agorise'
|
buildscript {
|
||||||
version '0.4.7-alpha2'
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
|
||||||
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
//apply from: 'maven-push.gradle'
|
apply plugin: 'com.github.dcendents.android-maven'
|
||||||
|
apply plugin: 'com.jfrog.bintray'
|
||||||
|
|
||||||
|
ext {
|
||||||
|
bintrayRepo = 'maven'
|
||||||
|
bintrayName = 'cy.agorise.graphenej'
|
||||||
|
|
||||||
|
publishedGroupId = 'cy.agorise'
|
||||||
|
artifact = 'graphenej'
|
||||||
|
libraryVersion = '0.6.0'
|
||||||
|
|
||||||
|
libraryName = 'Graphenej'
|
||||||
|
libraryDescription = 'A Java library for mobile app Developers; Graphene/Bitshares blockchain.'
|
||||||
|
|
||||||
|
siteUrl = 'https://github.com/Agorise/graphenej'
|
||||||
|
gitUrl = 'https://github.com/Agorise/graphenej'
|
||||||
|
|
||||||
|
|
||||||
|
developerId = 'bilthon'
|
||||||
|
developerName = 'Nelson Pérez'
|
||||||
|
developerEmail = 'bilthon@gmail.com'
|
||||||
|
|
||||||
|
licenseName = 'MIT License'
|
||||||
|
licenseUrl = 'https://github.com/Agorise/graphenej/blob/master/LICENSE'
|
||||||
|
allLicenses = ["MIT"]
|
||||||
|
|
||||||
|
//Bintray Credentials
|
||||||
|
Properties properties = new Properties()
|
||||||
|
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
||||||
|
|
||||||
|
bintrayUsername = properties.getProperty('bintay.user')
|
||||||
|
bintrayApiKey = properties.getProperty('bintray.apikey')
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 28
|
compileSdkVersion 28
|
||||||
|
|
Loading…
Reference in a new issue