Updating Maven settings

This commit is contained in:
Bharath Hariharan 2017-02-14 16:31:27 -08:00
parent acdb934ef9
commit 0b116f1b5c

View File

@ -16,6 +16,12 @@
under the License. under the License.
*/ */
ext {
apply from: 'cordova.gradle'
cdvCompileSdkVersion = privateHelpers.getProjectTarget()
cdvBuildToolsVersion = privateHelpers.findLatestInstalledBuildTools()
}
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
@ -32,12 +38,6 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray' apply plugin: 'com.jfrog.bintray'
ext {
apply from: 'cordova.gradle'
cdvCompileSdkVersion = privateHelpers.getProjectTarget()
cdvBuildToolsVersion = privateHelpers.findLatestInstalledBuildTools()
}
group = 'org.apache.cordova' group = 'org.apache.cordova'
version = '6.1.0' version = '6.1.0'
@ -86,8 +86,8 @@ install {
} }
developers { developers {
developer { developer {
id 'shazron' id 'stevengill'
name 'Shazron Abdullah' name 'Steve Gill'
} }
} }
scm { scm {
@ -115,7 +115,9 @@ bintray {
key = System.getenv('BINTRAY_KEY') key = System.getenv('BINTRAY_KEY')
configurations = ['archives'] configurations = ['archives']
pkg { pkg {
name = 'cordova' repo = 'maven'
name = 'cordova-android'
userOrg = 'cordova'
licenses = ['Apache-2.0'] licenses = ['Apache-2.0']
vcsUrl = 'https://git-wip-us.apache.org/repos/asf?p=cordova-android.git' vcsUrl = 'https://git-wip-us.apache.org/repos/asf?p=cordova-android.git'
websiteUrl = 'https://cordova.apache.org' websiteUrl = 'https://cordova.apache.org'