diff --git a/deploy.gradle b/deploy.gradle index cebde47..c261e9b 100644 --- a/deploy.gradle +++ b/deploy.gradle @@ -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 node for each + // def dependenciesNode = asNode().appendNode('dependencies') + //Iterate over the implementation dependencies (we don't want the test ones), adding a node for each configurations.implementation.allDependencies.each { if (it.name != 'unspecified') { def dependencyNode = dependenciesNode.appendNode('dependency') @@ -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 { diff --git a/gradle.properties b/gradle.properties index ef3a0f6..b0c4248 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ org.gradle.jvmargs=-Xmx1536m -VERSION_NAME=1.1.2 -VERSION_CODE=13 \ No newline at end of file +VERSION_NAME=1.1.3 +VERSION_CODE=14 \ No newline at end of file