diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/.gitignore | 1 | ||||
-rw-r--r-- | common/build.gradle | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/common/.gitignore b/common/.gitignore index fe99505..4ff597c 100644 --- a/common/.gitignore +++ b/common/.gitignore @@ -1,2 +1,3 @@ bin +build diff --git a/common/build.gradle b/common/build.gradle new file mode 100644 index 0000000..ba02d70 --- /dev/null +++ b/common/build.gradle @@ -0,0 +1,29 @@ +apply plugin: 'java' + +dependencies { + compile 'com.google.guava:guava:11.0.2' + + testCompile 'junit:junit:3.8.1' +} + +group = 'com.android.tools' +archivesBaseName = 'common' + +sourceSets { + main { + java { + srcDir 'src' + } + resources { + srcDir 'resources' + } + } + test { + java { + srcDir 'tests/src' + } + resources { + srcDir 'tests/resources' + } + } +} |