Skip to content

Commit 624b7c4

Browse files
committed
Merge pull request #10 from ViFork/master
changed kotlin version to 1.0.0
2 parents 7cafd23 + 40bf7c6 commit 624b7c4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

mockito-kotlin/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
apply plugin: 'kotlin'
22

33
buildscript {
4+
ext.kotlin_version = '1.0.0'
5+
46
repositories {
57
mavenCentral()
68
}
79

810
dependencies {
9-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.0-rc-1036"
11+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1012
}
1113
}
1214

@@ -16,8 +18,8 @@ repositories {
1618
}
1719

1820
dependencies {
19-
compile "org.jetbrains.kotlin:kotlin-stdlib:1.0.0-rc-1036"
20-
compile "org.jetbrains.kotlin:kotlin-reflect:1.0.0-rc-1036"
21+
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
22+
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
2123
compile "org.mockito:mockito-core:2.0.39-beta"
2224

2325
/* Tests */

0 commit comments

Comments
 (0)