blob: 432437636ee36071ca019696aa441d2a79b1fb21 [file] [log] [blame]
Xavier Ducrohetefc78cb2013-12-04 17:53:32 -08001apply plugin: 'java'
Xavier Ducroheta2b21252013-12-05 18:03:04 -08002apply plugin: 'maven'
Xavier Ducrohetefc78cb2013-12-04 17:53:32 -08003
Xavier Ducrohete081be42014-05-14 10:21:03 -07004evaluationDependsOn(':base:dvlib')
Xavier Ducrohetefc78cb2013-12-04 17:53:32 -08005
Raphael Moll7803e822013-03-08 10:05:25 -08006group = 'com.android.tools'
7archivesBaseName = 'sdklib-test'
Xavier Ducrohetc1ea3e82014-05-21 18:43:47 -07008version = rootProject.ext.baseVersion
Raphael Moll7803e822013-03-08 10:05:25 -08009
Raphael Moll8685da02013-02-05 14:26:42 -080010dependencies {
Xavier Ducrohete081be42014-05-14 10:21:03 -070011 compile project(':base:sdklib')
12 compile project(':base:dvlib').sourceSets.test.output
Chris Warrington655ab302015-02-11 11:27:12 -080013 compile 'junit:junit:4.12'
Raphael Moll8685da02013-02-05 14:26:42 -080014}
15
Raphael Moll8685da02013-02-05 14:26:42 -080016sourceSets {
17 main.resources.srcDirs = [ 'src/test/java' ]
18}