86 lines
2.6 KiB
Groovy
86 lines
2.6 KiB
Groovy
apply from: 'buildsystem/dependencies.gradle'
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
url 'https://plugins.gradle.org/m2/'
|
|
}
|
|
|
|
maven {
|
|
url = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
|
|
}
|
|
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.2.2'
|
|
classpath 'com.google.gms:google-services:3.0.0'
|
|
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.5.6'
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
|
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
|
|
classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
|
|
}
|
|
|
|
// this corresponds to the lombok.ast included above. fixes lint for retro-lambda
|
|
configurations.classpath.exclude group: 'com.android.tools.com.nytimes.android.external.lombok'
|
|
}
|
|
|
|
allprojects {
|
|
buildscript {
|
|
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
// Workaround to prevent Gradle from stealing focus from other apps during tests run/etc.
|
|
// https://gist.github.com/artem-zinnatullin/4c250e04636e25797165
|
|
tasks.withType(JavaForkOptions) {
|
|
jvmArgs '-Djava.awt.headless=true'
|
|
}
|
|
}
|
|
|
|
ext {
|
|
// SDK versions
|
|
|
|
// POM file
|
|
GROUP = "com.nytimes.android"
|
|
VERSION_NAME = "1.0.3-SNAPSHOT"
|
|
POM_PACKAGING = "pom"
|
|
POM_DESCRIPTION = "Store"
|
|
|
|
POM_URL = "https://github.com/nytimes/Store/"
|
|
POM_SCM_URL = "https://github.com/nytimes/Store/"
|
|
POM_SCM_CONNECTION = "scm:git:https://github.com/nytm/Store.git"
|
|
POM_SCM_DEV_CONNECTION = "scm:git:git@github.com:nytm/Store.git"
|
|
|
|
POM_LICENCE_NAME = "Apache License"
|
|
POM_LICENCE_URL = "http://www.apache.org/licenses/"
|
|
POM_LICENCE_DIST = "repo"
|
|
|
|
POM_DEVELOPER_ID = "nytimesandroid"
|
|
POM_DEVELOPER_NAME = "New York Times"
|
|
}
|
|
|
|
|
|
// From command line use: -PdisablePreDex to disable it: primarily for jenkins
|
|
project.ext.preDexLibs = !project.hasProperty('disablePreDex')
|
|
|
|
subprojects {
|
|
project.plugins.whenPluginAdded { plugin ->
|
|
if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name)) {
|
|
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
|
|
} else if ("com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) {
|
|
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
|
|
}
|
|
}
|
|
}
|
|
|
|
task gitHooksInit (type:Exec) {
|
|
workingDir "$projectDir"
|
|
commandLine './init-git-hooks'
|
|
}
|