Skip to content

Instantly share code, notes, and snippets.

@rozkminiacz
Created March 12, 2018 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rozkminiacz/114ce0b7e238ff96b6888dec952a544e to your computer and use it in GitHub Desktop.
Save rozkminiacz/114ce0b7e238ff96b6888dec952a544e to your computer and use it in GitHub Desktop.
ext {
def JunitVersion = '4.12'
def KotlinMockitoVersion = '1.5.0'
def SpekVersion = "1.1.5"
unitTestDependencies = [
junit : "junit:junit:${JunitVersion}",
]
kotlinTestDependencies = [
kotlinMockito: "com.nhaarman:mockito-kotlin:${KotlinMockitoVersion}",
]
spekDependencies = [
spekApi: "org.jetbrains.spek:spek-api:${SpekVersion}",
platformEngine: "org.jetbrains.spek:spek-junit-platform-engine:${SpekVersion}",
junitPlatformRunner: "org.junit.platform:junit-platform-runner:1.0.0"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment