aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs
diff options
context:
space:
mode:
authorRaphael Moll <ralf@android.com>2013-01-08 13:57:55 -0800
committerRaphael Moll <ralf@android.com>2013-01-09 11:14:32 -0800
commita06e0ecf3cf82f8c8cd90ba8bbb4faf063562037 (patch)
treede3519daaab60a97d6742a869b24e79548472a1f /lint/libs
parentd09956e1e7375d5a6ddd6d2d8c61c96376333d5f (diff)
downloadsdk-a06e0ecf3cf82f8c8cd90ba8bbb4faf063562037.zip
sdk-a06e0ecf3cf82f8c8cd90ba8bbb4faf063562037.tar.gz
sdk-a06e0ecf3cf82f8c8cd90ba8bbb4faf063562037.tar.bz2
Delete ALL the build.gradle from sdk.git
Change-Id: Ib923638c305105e84f79a18a79ece48d391129c5
Diffstat (limited to 'lint/libs')
-rw-r--r--lint/libs/lint_api/build.gradle70
-rw-r--r--lint/libs/lint_checks/build.gradle69
2 files changed, 0 insertions, 139 deletions
diff --git a/lint/libs/lint_api/build.gradle b/lint/libs/lint_api/build.gradle
deleted file mode 100644
index fe4d084..0000000
--- a/lint/libs/lint_api/build.gradle
+++ /dev/null
@@ -1,70 +0,0 @@
-dependencies {
- compile project(':common')
- compile project(':sdklib')
- compile project(':layoutlib_api')
-
- compile 'com.google.guava:guava:13.0.1'
- compile 'org.projectlombok:lombok.ast:0.2'
- compile 'org.ow2.asm:asm:4.0'
- compile 'org.ow2.asm:asm-tree:4.0'
-}
-
-def getVersion() {
- if (project.has("release")) {
- return project.ext.baseVersion
- }
-
- return project.ext.baseVersion + '-SNAPSHOT'
-}
-
-version = getVersion()
-group = 'com.android.tools.lint'
-archivesBaseName = 'lint-api'
-
-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 Tools Lint API'
- description 'API to build lint checks'
- 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'
- }
- }
- }
- }
- }
-}
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'
- }
- }
- }
- }
- }
-}