aboutsummaryrefslogtreecommitdiffstats
path: root/testutils/build.gradle
blob: 8ffc129dd5bab5845cae4abc4b0722419dd3f97b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dependencies {
    compile project(':common')
    compile 'junit:junit:3.8.1'
}

sourceSets {
    main {
        java {
            srcDir 'src'
        }
        resources {
            srcDir 'resources'
        }
    }
    test {
        java {
            srcDir 'tests/src'
        }
        resources {
            srcDir 'tests/resources'
        }
    }
}