blob: 1f5dbe66f72abe7f5587b574266b0b2e19b97041 [file] [log] [blame]
buildscript {
repositories {
maven { url '../../../../../out/host/gradle/repo' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.0-SNAPSHOT'
}
}
apply plugin: 'android-library'
apply plugin: 'maven'
repositories {
maven { url '../testrepo' }
mavenCentral()
}
dependencies {
compile 'com.example.android.multiproject:util:1.0'
releaseCompile 'com.google.guava:guava:11.0.2'
}
android {
compileSdkVersion 15
buildToolsVersion "18.0.1"
}
group = 'com.example.android.multiproject'
archivesBaseName = 'baseLib'
version = '1.0'
uploadArchives {
repositories {
mavenDeployer {
repository(url: uri("../testrepo"))
}
}
}