Skip to content

Commit

Permalink
bugs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
issotina committed Jul 23, 2018
1 parent cc43013 commit e1e0cbf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions deploy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ publishing {

//The publication doesn't know about our dependencies, so we have to manually add them to the pom
pom.withXml {
def dependenciesNode = asNode().appendNode('dependencies')
//Iterate over the compile dependencies (we don't want the test ones), adding a <dependency> node for each
// def dependenciesNode = asNode().appendNode('dependencies')
//Iterate over the implementation dependencies (we don't want the test ones), adding a <dependency> node for each
configurations.implementation.allDependencies.each {
if (it.name != 'unspecified') {
def dependencyNode = dependenciesNode.appendNode('dependency')
Expand All @@ -33,13 +33,13 @@ bintray {
dryRun = false
override = false
publish = true
configurations = ['archives']
pkg {
repo = 'KKIAPAY-ANDROID-SDK' // Bintray repo name
name = 'android-sdk' // library module name
userOrg = 'kkiapay' // Bintray user name
licenses = ['MIT']
desc = 'Android SDK for kkiapay API'
websiteUrl = 'https://kkiapay.me'
vcsUrl = 'https://github.com/kkiapay/android-sdk' // repo url

version {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
org.gradle.jvmargs=-Xmx1536m
VERSION_NAME=1.1.2
VERSION_CODE=13
VERSION_NAME=1.1.3
VERSION_CODE=14

0 comments on commit e1e0cbf

Please sign in to comment.