| dependencies { |
| compile project(':common') |
| compile 'kxml2:kxml2:2.3.0' |
| |
| 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.layoutlib' |
| archivesBaseName = 'layoutlib-api' |
| |
| 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 layoutlib_api' |
| description 'Library to use the rendering library for Android layouts: layoutlib' |
| 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' |
| } |
| } |
| } |
| } |
| } |
| } |