diff options
author | Xavier Ducrohet <xav@android.com> | 2012-10-19 14:48:42 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-10-19 16:14:05 -0700 |
commit | 677ccee3ffa11c71942f3e2bf59e0981aeaac5ea (patch) | |
tree | fe586f8e94efa9f583d6a1e362d22d1e3f53e006 /lint/libs/lint_checks/build.gradle | |
parent | 7a359895f07d5e6e508bb8b8502f5fd52d69e979 (diff) | |
download | sdk-677ccee3ffa11c71942f3e2bf59e0981aeaac5ea.zip sdk-677ccee3ffa11c71942f3e2bf59e0981aeaac5ea.tar.gz 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 'lint/libs/lint_checks/build.gradle')
-rw-r--r-- | lint/libs/lint_checks/build.gradle | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/lint/libs/lint_checks/build.gradle b/lint/libs/lint_checks/build.gradle new file mode 100644 index 0000000..53a3cf8 --- /dev/null +++ b/lint/libs/lint_checks/build.gradle @@ -0,0 +1,82 @@ +dependencies { + compile project(':lint_api') + compile 'org.ow2.asm:asm-analysis:4.0' + + testCompile 'org.easymock:easymock:3.1' + testCompile 'junit:junit:3.8.1' + testCompile project(':lint') +} + +def getVersion() { + if (project.has("release")) { + return project.ext.baseVersion + } + + return project.ext.baseVersion + '-SNAPSHOT' +} + +version = getVersion() +group = 'com.android.tools.lint' +archivesBaseName = 'lint-checks' + +sourceSets { + main { + java { + srcDir 'src' + } + resources { + srcDir 'src' + } + } + test { + java { + srcDir 'tests/src' + } + resources { + srcDir 'tests/src' + } + } +} + +uploadArchives { + repositories { + mavenDeployer { + beforeDeployment { MavenDeployment deployment -> + if (!project.has("release")) { + throw new StopExecutionException("uploadArchives must be called with the release.gradle init script") + } + + signing.signPom(deployment) + } + + repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") { + authentication(userName: sonatypeUsername, password: sonatypePassword) + } + + pom.project { + name 'Android Lint Checks' + description 'Checks for Android Lint' + url 'http://tools.android.com' + inceptionYear '2007' + + licenses { + license { + name 'The Apache Software License, Version 2.0' + url 'http://www.apache.org/licenses/LICENSE-2.0.txt' + distribution 'repo' + } + } + + scm { + url "https://android.googlesource.com/platform/sdk" + connection "git://android.googlesource.com/platform/sdk.git" + } + developers { + developer { + name 'The Android Open Source Project' + } + } + } + } + } +} |