summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/mavenLocal/baseLibrary/build.gradle
blob: 2ac8f92d876c1af233935e726f00c8609027c4cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
apply from: "../commonHeader.gradle"
buildscript { apply from: "../commonBuildScript.gradle" }

apply plugin: 'com.android.library'
apply plugin: 'maven'

repositories {
    mavenLocal()
}

dependencies {
    api 'com.example.android.multiproject:util:1.0'
    releaseApi 'com.google.guava:guava:19.0'
}

android {
    namespace "com.example.android.multiproject.library.base"
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()
    buildToolsVersion = libs.versions.buildToolsVersion.get()
}

group = 'com.example.android.multiproject'
archivesBaseName = 'baseLib'
version = '1.0'

uploadArchives {
  repositories {
    mavenInstaller()
  }
}