diff options
Diffstat (limited to 'lint/libs/lint_checks/build.gradle')
-rw-r--r-- | lint/libs/lint_checks/build.gradle | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/lint/libs/lint_checks/build.gradle b/lint/libs/lint_checks/build.gradle deleted file mode 100644 index 9326045..0000000 --- a/lint/libs/lint_checks/build.gradle +++ /dev/null @@ -1,69 +0,0 @@ -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') - testCompile project(':testutils') -} - -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.resources.srcDir 'src/main/java' - test.resources.srcDir 'src/test/java' -} - -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' - } - } - } - } - } -} |