blob: 28cb13fba3c83e5e1b8abebc4581115942fe8b8a [file] [log] [blame]
Xavier Ducrohetafd09722012-09-21 14:46:03 -07001buildscript {
2 repositories {
3 maven { url '../../../repo' }
4 }
5 dependencies {
6 classpath 'com.android.build:gradle-android:0.1-SNAPSHOT'
7 }
8}
9apply plugin: 'android-library'
10apply plugin: 'maven'
11
12repositories {
13 maven { url '../../../repo' }
14 mavenCentral()
15}
16
17dependencies {
18 compile 'com.example.android.multiproject:baseLib:1.0'
19}
20
21android {
22 target 'android-15'
23}
24
25group = 'com.example.android.multiproject'
26archivesBaseName = 'lib'
27version = '1.0'
28
29uploadArchives {
30 repositories {
31 mavenDeployer {
32 repository(url: uri("../../../repo"))
33 }
34 }
35}