aboutsummaryrefslogtreecommitdiff
path: root/robolectric-sandbox/build.gradle
blob: 44684f179da98eac6f34b8eebd4d9d42541ab11b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
new RoboJavaModulePlugin(
        deploy: true
).apply(project)

dependencies {
    // Compile dependencies
    compile project(":robolectric-annotations")
    compile project(":robolectric-utils")
    compile project(":shadow-api")

    compile "org.ow2.asm:asm:5.0.1"
    compile "org.ow2.asm:asm-commons:5.0.1"
    compile "com.google.guava:guava:20.0"
    compileOnly "com.google.code.findbugs:jsr305:3.0.1"

    testCompile "junit:junit:4.12"
    testCompile "org.assertj:assertj-core:2.6.0"
    testCompile "org.mockito:mockito-core:2.5.4"
    testCompile project(":robolectric-junit")
}