diff options
author | Raphael Moll <ralf@android.com> | 2013-01-09 18:16:15 -0800 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-01-09 18:16:15 -0800 |
commit | 5b30d8114124620147d411c4e74bac426b7d34d4 (patch) | |
tree | a698b740d4fe346ba6fe3b14ec73b7f43fb01234 /ddms | |
parent | 707f534c210508dc2892c67c3bcbae20f5215160 (diff) | |
parent | a06e0ecf3cf82f8c8cd90ba8bbb4faf063562037 (diff) | |
download | sdk-5b30d8114124620147d411c4e74bac426b7d34d4.zip sdk-5b30d8114124620147d411c4e74bac426b7d34d4.tar.gz sdk-5b30d8114124620147d411c4e74bac426b7d34d4.tar.bz2 |
Merge "Delete ALL the build.gradle from sdk.git"
Diffstat (limited to 'ddms')
-rw-r--r-- | ddms/libs/ddmlib/build.gradle | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/ddms/libs/ddmlib/build.gradle b/ddms/libs/ddmlib/build.gradle deleted file mode 100644 index c46cdb4..0000000 --- a/ddms/libs/ddmlib/build.gradle +++ /dev/null @@ -1,66 +0,0 @@ -dependencies { - compile 'kxml2:kxml2:2.3.0' - - testCompile 'org.easymock:easymock:3.1' - testCompile 'junit:junit:3.8.1' -} - -def getVersion() { - if (project.has("release")) { - return project.ext.baseVersion - } - - return project.ext.baseVersion + '-SNAPSHOT' -} - -version = getVersion() -group = 'com.android.tools.ddms' -archivesBaseName = 'ddmlib' - -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 ddmlib' - description 'Library providing APIs to talk to Android devices' - 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' - } - } - } - } - } -} |