Skip to content

Commit

Permalink
Merge pull request #10 from ViFork/master
Browse files Browse the repository at this point in the history
changed kotlin version to 1.0.0
  • Loading branch information
nhaarman committed Feb 17, 2016
2 parents 7cafd23 + 40bf7c6 commit 624b7c4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions mockito-kotlin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
apply plugin: 'kotlin'

buildscript {
ext.kotlin_version = '1.0.0'

repositories {
mavenCentral()
}

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.0-rc-1036"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

Expand All @@ -16,8 +18,8 @@ repositories {
}

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:1.0.0-rc-1036"
compile "org.jetbrains.kotlin:kotlin-reflect:1.0.0-rc-1036"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile "org.mockito:mockito-core:2.0.39-beta"

/* Tests */
Expand Down

0 comments on commit 624b7c4

Please sign in to comment.