aboutsummaryrefslogtreecommitdiff
path: root/gradle/build.gradle
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2013-07-09 19:21:59 -0700
committerXavier Ducrohet <xav@android.com>2013-07-09 19:46:39 -0700
commit473f535dd9d590b59d11c0991e50a864ea217862 (patch)
treee8edcd4fac824556b99659513bc35c2b0a38b076 /gradle/build.gradle
parent5f2139198856019ac919e3074b522e29b2248369 (diff)
downloadbuild-473f535dd9d590b59d11c0991e50a864ea217862.tar.gz
Refactor model in single library.
Nothing in gradle-model is gradle specific (besides the test) so move all the classes in builder-model. Also add javadoc everywhere, and rename BuildConfig into BaseConfig. Change-Id: Ib1d647e8259c3ecc675bd643118174da1257df5a
Diffstat (limited to 'gradle/build.gradle')
-rw-r--r--gradle/build.gradle3
1 files changed, 0 insertions, 3 deletions
diff --git a/gradle/build.gradle b/gradle/build.gradle
index 5a2a4de..16b99e6 100644
--- a/gradle/build.gradle
+++ b/gradle/build.gradle
@@ -28,7 +28,6 @@ dependencies {
gradleApi gradleApi()
groovy localGroovy()
compile project(':builder')
- compile project(':gradle-model')
runtime 'net.sf.proguard:proguard-gradle:4.9'
@@ -80,7 +79,6 @@ version = getVersion()
archivesBaseName = 'gradle'
jar.manifest.attributes("Plugin-Version": version)
-
task publishLocal(type: Upload) {
configuration = configurations.archives
repositories {
@@ -90,7 +88,6 @@ task publishLocal(type: Upload) {
}
}
publishLocal.dependsOn ':builder:publishLocal'
-publishLocal.dependsOn ':gradle-model:publishLocal'
task buildTest(type: Test, dependsOn: publishLocal) {
testClassesDir = sourceSets.buildTest.output.classesDir