aboutsummaryrefslogtreecommitdiff
path: root/builder-model/build.gradle
blob: 3e780dfe77b4a05b30e9ae00911017dd35b82a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'clone-artifacts'

dependencies {
    compile "com.android.tools:common:$project.ext.baseAndroidVersion"
}

archivesBaseName = 'builder-model'
project.ext.pomName = 'Android Builder Model library'
project.ext.pomDesc = 'Model for the Builder library.'

apply from: '../publish.gradle'
apply from: '../javadoc.gradle'

jar.manifest.attributes("Model-Version": "$version")