24 lines
604 B
Groovy
24 lines
604 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:0.13.0'
|
|
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.1"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'io.codearte.nexus-staging'
|
|
|
|
nexusStaging {
|
|
packageGroup = "com.nononsenseapps"
|
|
//stagingProfileId = "yourStagingProfileId" //when not defined will be got from server using "packageGroup"
|
|
} |