aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy
blob: ec3d208644834df9560fd215a82196d423d23965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package ca.allanwang.kau

/**
 * Some common dependencies, backed by the supplied versions
 */
class Dependencies {
    static def kotlin = "org.jetbrains.kotlin:kotlin-stdlib:${Versions.kotlin}"
    static def kotlinTest = "org.jetbrains.kotlin:kotlin-test-junit:${Versions.kotlin}"
    static def junit = "junit:junit:${Versions.junit}"
    static def espresso = "com.android.support.test.espresso:espresso-core:${Versions.espresso}"
    static def testRunner = "com.android.support.test:runner:${Versions.testRunner}"
}