summaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2012-10-19 14:48:42 -0700
committerXavier Ducrohet <xav@android.com>2012-10-19 16:14:05 -0700
commit677ccee3ffa11c71942f3e2bf59e0981aeaac5ea (patch)
treefe586f8e94efa9f583d6a1e362d22d1e3f53e006 /build.gradle
parent7a359895f07d5e6e508bb8b8502f5fd52d69e979 (diff)
downloadreplicant_sdk-677ccee3ffa11c71942f3e2bf59e0981aeaac5ea.zip
replicant_sdk-677ccee3ffa11c71942f3e2bf59e0981aeaac5ea.tar.gz
replicant_sdk-677ccee3ffa11c71942f3e2bf59e0981aeaac5ea.tar.bz2
Update maven artifacts and add lint.
Updated the groupId of most artifacts to be more reflective of their sub-projects status in the SDK tools. Added lint artifacts. Change-Id: I900a165647a9b7d3c55b473f63c4ca4469762d7b
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 5 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 982e93a..d529d1b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,12 +9,15 @@ subprojects {
mavenCentral()
}
- group = 'com.android.tools'
-
project.ext {
baseVersion = '21.0'
}
+ // set all java compilation to use UTF-8 encoding.
+ tasks.withType(JavaCompile) {
+ options.encoding = 'UTF-8'
+ }
+
// custom tasks for creating source/javadoc jars
task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources'