Store/build.gradle
Paul Woitaschek 62c7ca39d7 Cleanup (#127)
* Fixed a race condition that would appear when the read was called but not immediately subscribed to. Defer the whole file check till subscription.

* Diamonds

* General cleanup, missing nullity annotations, missing override annotations

* More key naming conventions

* Dependency update

* More key naming conventions

* Parser, not func

* Name outer key different so cache can be evicted correctly

* Another missing override
2017-02-09 13:04:07 -08:00

96 lines
2.9 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.3'
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'
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.8'
}
// 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 {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
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 = "2.0.0-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
}
}
project.plugins.apply('net.ltgt.errorprone')
configurations.errorprone {
resolutionStrategy.force 'com.google.errorprone:error_prone_core:2.0.15'
}
}
task gitHooksInit (type:Exec) {
workingDir "$projectDir"
commandLine './init-git-hooks'
}